Searched refs:apply (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/xacml/v3/
H A DPersistableImportStep.java34 void apply() throws EntitlementException; method in interface:PersistableImportStep
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DSettings.java47 sharedPreferences.edit().putBoolean(CAMERA_ENABLED_SETTING, cameraEnabled).apply();
61 sharedPreferences.edit().putBoolean(CAMERA_ENABLED_SETTING, enabled).apply();
78 sharedPreferences.edit().putBoolean(SPLASH_ENABLED_SETTING, enabled).apply();
/forgerock/authenticator-android-v2/app/
H A Dbuild.gradle16 apply plugin: 'com.android.application'
120 apply plugin: 'jacoco'
134 apply plugin: 'com.google.gms.google-services'
136 apply plugin: 'spoon'
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsServiceHandlerFunctionTest.java36 assertThat(handled.apply("sunFMCOTConfigService")).isFalse();
41 assertThat(handled.apply("dashboardService")).isTrue();
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DRealmAdminUiRolePredicate.java17 public boolean apply(Context context) { method in class:RealmAdminUiRolePredicate
H A DGlobalAdminUiRolePredicate.java18 public boolean apply(Context context) { method in class:GlobalAdminUiRolePredicate
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DLdapOptionFunction.java41 <R extends Request> R apply(R request, Options options); method in interface:LdapOptionFunction
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DRealmAdminUiRolePredicate.java17 public boolean apply(Context context) { method in class:RealmAdminUiRolePredicate
H A DGlobalAdminUiRolePredicate.java18 public boolean apply(Context context) { method in class:GlobalAdminUiRolePredicate
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/utils/blob/
H A DTokenBlobStrategy.java52 return apply(strategies, true, data);
64 return apply(reverseStrategies, false, data);
70 * @param strategies Non null strategies to apply.
72 * @param data The data to apply the change to. May be null.
77 private byte[] apply(Collection<BlobStrategy> strategies, boolean perform, byte[] data) method in class:TokenBlobStrategy
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/utils/blob/
H A DTokenBlobStrategy.java52 return apply(strategies, true, data);
64 return apply(reverseStrategies, false, data);
70 * @param strategies Non null strategies to apply.
72 * @param data The data to apply the change to. May be null.
77 private byte[] apply(Collection<BlobStrategy> strategies, boolean perform, byte[] data) method in class:TokenBlobStrategy
/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/
H A DSourceGenerator.java105 public CharSequence apply(String context, Options options) throws IOException {
113 String outputFilename = hbtemplate.apply(config);
116 String outputPath = hbtemplate.apply(config);
126 String contents = hbtemplate.apply(config);
140 String outputFilename = hbtemplate.apply(config);
143 String outputPath = hbtemplate.apply(config);
154 String contents = hbtemplate.apply(config);
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/query/
H A DTokenHandler.java57 public String apply(String object) {
67 public String apply(String path) {
79 public String apply(String jsonPointer) {
80 return TRIM_LEADING_DOT.apply(
146 replacement = JSON_POINTER_TO_DOT_NOTATION.apply(replacement.toString());
191 buf.append(JSON_POINTER_TO_DOT_NOTATION.apply(tokenKey));
/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/
H A DPatch.java50 public void apply() throws PatchException, PrePatchException, PostPatchException; method in interface:Patch
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsServiceHandlerFunction.java84 public boolean apply(String serviceName) { method in class:SmsServiceHandlerFunction
86 if (handled.apply(serviceName)) {
103 public boolean apply(String name) { method in class:SmsServiceHandlerFunction.SingleServiceFunction
121 public boolean apply(String name) { method in class:SmsServiceHandlerFunction.MultiServiceFunction
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/
H A DFileManager.java138 co.apply();
156 op.apply();
161 op.apply();
179 op.apply();
184 op.apply();
285 public abstract void apply() throws IOException; method in class:FileManager.FileOperation
344 public void apply() throws IOException method in class:FileManager.CopyOperation
526 public void apply() throws IOException method in class:FileManager.DeleteOperation
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/delegates/
H A DResourceDelegate.js82 return AbstractDelegate.prototype.createEntity.apply(_.extend({}, AbstractDelegate.prototype, this, {"serviceUrl": serviceUrl}), _.toArray(arguments).slice(1));
85 return AbstractDelegate.prototype.readEntity.apply(_.extend({}, AbstractDelegate.prototype, this, {"serviceUrl": serviceUrl}), _.toArray(arguments).slice(1));
88 return AbstractDelegate.prototype.updateEntity.apply(_.extend({}, AbstractDelegate.prototype, this, {"serviceUrl": serviceUrl}), _.toArray(arguments).slice(1));
114 return AbstractDelegate.prototype.patchEntityDifferences.apply(_.extend({}, AbstractDelegate.prototype, this, {"serviceUrl": serviceUrl}), _.toArray(arguments).slice(1));
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/annotations/
H A DAnnotatedMethod.java82 return responseAdapter.apply(result);
139 public Promise<Response, NeverThrowsException> apply(Object o) {
164 public Promise<Response, NeverThrowsException> apply(Object o) { method in class:AnnotatedMethod.ResponseCreator
165 Object content = entityConverter.apply(o);
185 public Object apply(Object o) {
199 public Promise<Response, NeverThrowsException> apply(Object o) { method in class:AnnotatedMethod.PromisedResponseCreator
208 public Object apply(Object o) {
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaEnabledFilter.java77 public Promise<ActionResponse, ResourceException> apply(Void value) {
89 public Promise<ResourceResponse, ResourceException> apply(Void value) {
101 public Promise<ResourceResponse, ResourceException> apply(Void value) {
113 public Promise<ResourceResponse, ResourceException> apply(Void value) {
126 public Promise<QueryResponse, ResourceException> apply(Void value) {
138 public Promise<ResourceResponse, ResourceException> apply(Void value) {
150 public Promise<ResourceResponse, ResourceException> apply(Void value) {
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaEnabledFilter.java76 public Promise<ActionResponse, ResourceException> apply(Void value) {
88 public Promise<ResourceResponse, ResourceException> apply(Void value) {
100 public Promise<ResourceResponse, ResourceException> apply(Void value) {
112 public Promise<ResourceResponse, ResourceException> apply(Void value) {
125 public Promise<QueryResponse, ResourceException> apply(Void value) {
137 public Promise<ResourceResponse, ResourceException> apply(Void value) {
149 public Promise<ResourceResponse, ResourceException> apply(Void value) {
/forgerock/openidm-v4/openidm-api-servlet/src/main/java/org/forgerock/openidm/servlet/internal/
H A DScriptedFilter.java83 public Promise<ActionResponse, ResourceException> apply(Request value) {
95 public Promise<ResourceResponse, ResourceException> apply(Request value) {
107 public Promise<ResourceResponse, ResourceException> apply(Request value) {
119 public Promise<ResourceResponse, ResourceException> apply(Request value) {
131 public Promise<ResourceResponse, ResourceException> apply(Request value) {
143 public Promise<ResourceResponse, ResourceException> apply(Request value) {
156 public Promise<QueryResponse, ResourceException> apply(Request value) throws ResourceException {
175 public Promise<R, ResourceException> apply(R response) throws ResourceException {
182 public Promise<R, ResourceException> apply(ResourceException error) throws ResourceException {
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/
H A DScriptConfigurationQueryFilterVisitor.java84 public boolean apply(@Nullable ScriptConfiguration configuration) {
96 public boolean apply(@Nullable ScriptConfiguration configuration) {
109 public boolean apply(@Nullable ScriptConfiguration configuration) {
124 public boolean apply(@Nullable ScriptConfiguration configuration) {
139 public boolean apply(@Nullable ScriptConfiguration configuration) {
154 public boolean apply(@Nullable ScriptConfiguration configuration) {
175 public boolean apply(@Nullable ScriptConfiguration configuration) {
187 public boolean apply(@Nullable ScriptConfiguration configuration) {
237 if (test.apply(sc)) {
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DFileManager.java178 new MoveOperation(object, newParent).apply();
204 new DeleteOperation(object, DeletionPolicy.DELETE_IMMEDIATELY).apply();
264 co.apply();
281 co.apply();
363 op.apply();
366 op.apply();
378 op.apply();
381 op.apply();
428 abstract public void apply() throws ApplicationException; method in class:FileManager.FileOperation
472 public void apply() throw method in class:FileManager.CopyOperation
600 public void apply() throws ApplicationException { method in class:FileManager.DeleteOperation
693 public void apply() throws ApplicationException { method in class:FileManager.MoveOperation
[all...]
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DFileManager.java179 new MoveOperation(object, newParent).apply();
205 new DeleteOperation(object, DeletionPolicy.DELETE_IMMEDIATELY).apply();
265 co.apply();
282 co.apply();
364 op.apply();
367 op.apply();
379 op.apply();
382 op.apply();
429 abstract public void apply() throws ApplicationException; method in class:FileManager.FileOperation
473 public void apply() throw method in class:FileManager.CopyOperation
601 public void apply() throws ApplicationException { method in class:FileManager.DeleteOperation
694 public void apply() throws ApplicationException { method in class:FileManager.MoveOperation
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DFileManager.java179 new MoveOperation(object, newParent).apply();
205 new DeleteOperation(object, DeletionPolicy.DELETE_IMMEDIATELY).apply();
265 co.apply();
282 co.apply();
364 op.apply();
367 op.apply();
379 op.apply();
382 op.apply();
429 abstract public void apply() throws ApplicationException; method in class:FileManager.FileOperation
473 public void apply() throw method in class:FileManager.CopyOperation
601 public void apply() throws ApplicationException { method in class:FileManager.DeleteOperation
694 public void apply() throws ApplicationException { method in class:FileManager.MoveOperation
[all...]

Completed in 77 milliseconds

1234567891011>>