Uses of Class
org.forgerock.json.resource.ResourceException
-
Packages that use ResourceException Package Description org.forgerock.am.iot This package contains all classes pertaining to AM's IoT functionality.org.forgerock.authz.filter.crest.api This package defines the authorization API interfaces for use in a CREST environment.org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.monitoring Common utility classes for monitoring.org.forgerock.openam.integration.idm Classes to support interacting with IDM.org.forgerock.openam.rest.resource This package contains classes for the handling of REST request to CREST Resource endpoints with the concept of realms in OpenAM built in.org.forgerock.openam.sts Base package for classes shared between the SOAP and REST STS.org.forgerock.openam.uma.extensions Extension points for integrating with UMA functionality.org.forgerock.selfservice.core This package contains the core implementation for the anonymous process service.org.forgerock.selfservice.core.snapshot This package contains the implementation for creating and management of snapshots.org.forgerock.selfservice.core.util This package contains core utility methods and classes.org.forgerock.selfservice.stages.captcha This package contains captcha stage implementation.org.forgerock.selfservice.stages.email This package contains a common email stage implementation.org.forgerock.selfservice.stages.kba This package contains a common user kba stage implementation.org.forgerock.selfservice.stages.parameters This package contains a parameter passing stage implementation.org.forgerock.selfservice.stages.registration This package contains a common user registration stage implementation.org.forgerock.selfservice.stages.reset This package contains a common reset password stage implementation.org.forgerock.selfservice.stages.user This package contains a common user related stage implementation. -
-
Uses of ResourceException in org.forgerock.am.iot
Methods in org.forgerock.am.iot that return types with arguments of type ResourceException Modifier and Type Method Description Promise<ActionResponse,ResourceException>ThingsResource. actionInstance(Context context, String id, ActionRequest request)Promise<ActionResponse,ResourceException>ThingsAccessAuditFilter. filterAction(Context context, ActionRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ThingsResource. readInstance(Context context, String id, ReadRequest request) -
Uses of ResourceException in org.forgerock.authz.filter.crest.api
Methods in org.forgerock.authz.filter.crest.api that return types with arguments of type ResourceException Modifier and Type Method Description Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeAction(Context context, ActionRequest request)Authorizes a received REST action request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeCreate(Context context, CreateRequest request)Authorizes a received REST create request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeDelete(Context context, DeleteRequest request)Authorizes a received REST delete request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizePatch(Context context, PatchRequest request)Authorizes a received REST patch request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeQuery(Context context, QueryRequest request)Authorizes a received REST query request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeRead(Context context, ReadRequest request)Authorizes a received REST read request.Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeUpdate(Context context, UpdateRequest request)Authorizes a received REST update request. -
Uses of ResourceException in org.forgerock.json.resource
Subclasses of ResourceException in org.forgerock.json.resource Modifier and Type Class Description classBadRequestExceptionAn exception that is thrown during a operation on a resource when the requested operation is malformed.classConflictExceptionAn exception that is thrown during a operation on a resource when such an operation would result in a conflict.classCreateNotSupportedExceptionA specific exception for when Create is not supported, but Upsert might be being attempted so distinguish from otherBadRequestExceptions.classForbiddenExceptionAn exception that is thrown when access to a resource is forbidden during an operation on an resource.classInternalServerErrorExceptionAn exception that is thrown during an operation on a resource when the server encountered an unexpected condition which prevented it from fulfilling the request.classNotFoundExceptionAn exception that is thrown when a specified resource cannot be found.classNotSupportedExceptionAn exception that is thrown during an operation on a resource when the resource does not implement/support the feature to fulfill the request.classPermanentExceptionAn exception that indicates that a failure is permanent, i.e.classPreconditionFailedExceptionAn exception that is thrown to indicate that a resource's current version does not match the version provided.classPreconditionRequiredExceptionAn exception that is thrown to indicate that a resource requires a version, but no version was supplied in the request.classRetryableExceptionAn exception that indicates that a failure may be temporary, and that retrying the same request may be able to succeed in the future.classServiceUnavailableExceptionAn exception that is thrown during an operation on a resource when the server is temporarily unable to handle the request.classUncategorizedExceptionAn exception that indicates that a failure is not directly known to the system, and hence requires out-of-band knowledge or enhancements to determine if a failure should be categorized as temporary or permanent.classUnsupportedMediaTypeExceptionIndicates a 415 Unsupported Media Type response that the Content-Type of the request was not acceptable.Methods in org.forgerock.json.resource with type parameters of type ResourceException Modifier and Type Method Description <E extends ResourceException>
EResourceException. includeCauseInJsonValue()Returns this ResourceException with the includeCause flag set to true so that toJsonValue() method will include the cause if there is one supplied.<E extends ResourceException>
EResourceException. setDetail(JsonValue detail)Sets the additional detail which can be evaluated by applications.<E extends ResourceException>
EResourceException. setReason(String reason)Sets/overrides the short reason phrase of the exception.Methods in org.forgerock.json.resource that return ResourceException Modifier and Type Method Description static ResourceExceptionResourceException. getException(int code)Deprecated.in favor ofnewResourceException(int)static ResourceExceptionResourceException. getException(int code, String message)Deprecated.in favor ofnewResourceException(int, String)static ResourceExceptionResourceException. getException(int code, String message, Throwable cause)Deprecated.in favor ofnewResourceException(int, String, Throwable)static ResourceExceptionResourceException. newResourceException(int code)Returns an exception with the specified HTTP error code, but no detail message or cause, and a default reason phrase.static ResourceExceptionResourceException. newResourceException(int code, String message)Returns an exception with the specified HTTP error code and detail message, but no cause, and a default reason phrase.static ResourceExceptionResourceException. newResourceException(int code, String message, Throwable cause)Returns an exception with the specified HTTP error code, detail message, and cause, and a default reason phrase.Methods in org.forgerock.json.resource that return types with arguments of type ResourceException Modifier and Type Method Description Promise<ActionResponse,ResourceException>AbstractConnectionWrapper. actionAsync(Context context, ActionRequest request)Asynchronously performs an action against a specific resource, or set of resources.Promise<ActionResponse,ResourceException>Connection. actionAsync(Context context, ActionRequest request)Asynchronously performs an action against a specific resource, or set of resources.default Promise<ActionResponse,ResourceException>CollectionResourceProvider. actionCollection(Context context, ActionRequest request)Performs the providedactionagainst the resource collection.Promise<ActionResponse,ResourceException>MemoryBackend. actionCollection(Context context, ActionRequest request)Performs the providedactionagainst the resource collection.default Promise<ActionResponse,ResourceException>CollectionResourceProvider. actionInstance(Context context, String resourceId, ActionRequest request)Performs the providedactionagainst a resource within the collection.Promise<ActionResponse,ResourceException>MemoryBackend. actionInstance(Context context, String id, ActionRequest request)Performs the providedactionagainst a resource within the collection.default Promise<ActionResponse,ResourceException>SingletonResourceProvider. actionInstance(Context context, ActionRequest request)Performs the providedactionagainst the single resource instance.Promise<ActionResponse,ResourceException>ActionResponse. asPromise()Return this response as a result Promise.Promise<QueryResponse,ResourceException>QueryResponse. asPromise()Return this response as a result Promise.<V> Promise<V,ResourceException>ResourceException. asPromise()Return this ResourceException as a Promise.Promise<ResourceResponse,ResourceException>ResourceResponse. asPromise()Return this response as a result Promise.Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. createAsync(Context context, CreateRequest request)Asynchronously adds a new JSON resource.Promise<ResourceResponse,ResourceException>Connection. createAsync(Context context, CreateRequest request)Asynchronously adds a new JSON resource.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. createInstance(Context context, CreateRequest request)Addsa new resource instance to the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. createInstance(Context context, CreateRequest request)Addsa new resource instance to the collection.Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. deleteAsync(Context context, DeleteRequest request)Asynchronously deletes a JSON resource.Promise<ResourceResponse,ResourceException>Connection. deleteAsync(Context context, DeleteRequest request)Asynchronously deletes a JSON resource.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. deleteInstance(Context context, String resourceId, DeleteRequest request)Removesa resource instance from the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. deleteInstance(Context context, String id, DeleteRequest request)Removesa resource instance from the collection.Promise<ActionResponse,ResourceException>Filter. filterAction(Context context, ActionRequest request, RequestHandler next)Filters an action request.Promise<ActionResponse,ResourceException>ResourceApiVersionRoutingFilter. filterAction(Context context, ActionRequest request, RequestHandler next)Promise<ActionResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterAction(Context context, ActionRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>Filter. filterCreate(Context context, CreateRequest request, RequestHandler next)Filters a create request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterCreate(Context context, CreateRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterCreate(Context context, CreateRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>Filter. filterDelete(Context context, DeleteRequest request, RequestHandler next)Filters a delete request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterDelete(Context context, DeleteRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterDelete(Context context, DeleteRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>Filter. filterPatch(Context context, PatchRequest request, RequestHandler next)Filters a patch request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterPatch(Context context, PatchRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterPatch(Context context, PatchRequest request, RequestHandler next)Promise<QueryResponse,ResourceException>Filter. filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next)Filters a query request.Promise<QueryResponse,ResourceException>ResourceApiVersionRoutingFilter. filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next)Promise<QueryResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next)Promise<ResourceResponse,ResourceException>Filter. filterRead(Context context, ReadRequest request, RequestHandler next)Filters a read request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterRead(Context context, ReadRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterRead(Context context, ReadRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>Filter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Filters an update request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Promise<Connection,ResourceException>ConnectionFactory. getConnectionAsync()Asynchronously obtains a connection to the JSON resource provider associated with this connection factory.Promise<ActionResponse,ResourceException>FilterChain. handleAction(Context context, ActionRequest request)default Promise<ActionResponse,ResourceException>RequestHandler. handleAction(Context context, ActionRequest request)Handles performing an action on a resource, and optionally returns an associated result.Promise<ActionResponse,ResourceException>Router. handleAction(Context context, ActionRequest request)Promise<ResourceResponse,ResourceException>FilterChain. handleCreate(Context context, CreateRequest request)default Promise<ResourceResponse,ResourceException>RequestHandler. handleCreate(Context context, CreateRequest request)Adds a new JSON resource, returning aPromisethat will be completed when the resource has been added.Promise<ResourceResponse,ResourceException>Router. handleCreate(Context context, CreateRequest request)Promise<ResourceResponse,ResourceException>FilterChain. handleDelete(Context context, DeleteRequest request)default Promise<ResourceResponse,ResourceException>RequestHandler. handleDelete(Context context, DeleteRequest request)Deletes a JSON resource, returning aPromisethat will be completed when the resource has been deleted.Promise<ResourceResponse,ResourceException>Router. handleDelete(Context context, DeleteRequest request)Promise<ResourceResponse,ResourceException>FilterChain. handlePatch(Context context, PatchRequest request)default Promise<ResourceResponse,ResourceException>RequestHandler. handlePatch(Context context, PatchRequest request)Updates a JSON resource by applying a set of changes to its existing content, returning aPromisethat will be completed when the resource has been updated.Promise<ResourceResponse,ResourceException>Router. handlePatch(Context context, PatchRequest request)Promise<QueryResponse,ResourceException>FilterChain. handleQuery(Context context, QueryRequest request, QueryResourceHandler handler)default Promise<QueryResponse,ResourceException>RequestHandler. handleQuery(Context context, QueryRequest request, QueryResourceHandler handler)Searches for all JSON resources matching a user specified set of criteria, returning aPromisethat will be completed when the search has completed.Promise<QueryResponse,ResourceException>Router. handleQuery(Context context, QueryRequest request, QueryResourceHandler handler)Promise<ResourceResponse,ResourceException>FilterChain. handleRead(Context context, ReadRequest request)default Promise<ResourceResponse,ResourceException>RequestHandler. handleRead(Context context, ReadRequest request)Reads a JSON resource, returning aPromisethat will be completed when the resource has been read.Promise<ResourceResponse,ResourceException>Router. handleRead(Context context, ReadRequest request)Promise<ResourceResponse,ResourceException>FilterChain. handleUpdate(Context context, UpdateRequest request)default Promise<ResourceResponse,ResourceException>RequestHandler. handleUpdate(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content, returning aPromisethat will be completed when the resource has been updated.Promise<ResourceResponse,ResourceException>Router. handleUpdate(Context context, UpdateRequest request)Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. patchAsync(Context context, PatchRequest request)Asynchronously updates a JSON resource by applying a set of changes to its existing content.Promise<ResourceResponse,ResourceException>Connection. patchAsync(Context context, PatchRequest request)Asynchronously updates a JSON resource by applying a set of changes to its existing content.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. patchInstance(Context context, String resourceId, PatchRequest request)Patchesan existing resource within the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. patchInstance(Context context, String id, PatchRequest request)Patchesan existing resource within the collection.default Promise<ResourceResponse,ResourceException>SingletonResourceProvider. patchInstance(Context context, PatchRequest request)Patchesthe single resource instance.Promise<QueryResponse,ResourceException>AbstractConnectionWrapper. queryAsync(Context context, QueryRequest request, QueryResourceHandler handler)Asynchronously searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.Promise<QueryResponse,ResourceException>Connection. queryAsync(Context context, QueryRequest request, QueryResourceHandler handler)Asynchronously searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.default Promise<QueryResponse,ResourceException>CollectionResourceProvider. queryCollection(Context context, QueryRequest request, QueryResourceHandler handler)Searchesthe collection for all resources which match the query request criteria.Promise<QueryResponse,ResourceException>MemoryBackend. queryCollection(Context context, QueryRequest request, QueryResourceHandler handler)Searchesthe collection for all resources which match the query request criteria.Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. readAsync(Context context, ReadRequest request)Asynchronously reads a JSON resource.Promise<ResourceResponse,ResourceException>Connection. readAsync(Context context, ReadRequest request)Asynchronously reads a JSON resource.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. readInstance(Context context, String resourceId, ReadRequest request)Readsan existing resource within the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. readInstance(Context context, String id, ReadRequest request)Readsan existing resource within the collection.default Promise<ResourceResponse,ResourceException>SingletonResourceProvider. readInstance(Context context, ReadRequest request)Readsthe single resource instance.Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. updateAsync(Context context, UpdateRequest request)Asynchronously updates a JSON resource by replacing its existing content with new content.Promise<ResourceResponse,ResourceException>Connection. updateAsync(Context context, UpdateRequest request)Asynchronously updates a JSON resource by replacing its existing content with new content.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. updateInstance(Context context, String resourceId, UpdateRequest request)Updatesan existing resource within the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. updateInstance(Context context, String id, UpdateRequest request)Updatesan existing resource within the collection.default Promise<ResourceResponse,ResourceException>SingletonResourceProvider. updateInstance(Context context, UpdateRequest request)Updatesthe single resource instance.Methods in org.forgerock.json.resource that throw ResourceException Modifier and Type Method Description ActionResponseAbstractAsynchronousConnection. action(Context context, ActionRequest request)ActionResponseAbstractConnectionWrapper. action(Context context, ActionRequest request)Performs an action against a specific resource, or set of resources.ActionResponseConnection. action(Context context, ActionRequest request)Performs an action against a specific resource, or set of resources.ResourceResponseAbstractAsynchronousConnection. create(Context context, CreateRequest request)ResourceResponseAbstractConnectionWrapper. create(Context context, CreateRequest request)Adds a new JSON resource.ResourceResponseConnection. create(Context context, CreateRequest request)Adds a new JSON resource.ResourceResponseAbstractAsynchronousConnection. delete(Context context, DeleteRequest request)ResourceResponseAbstractConnectionWrapper. delete(Context context, DeleteRequest request)Deletes a JSON resource.ResourceResponseConnection. delete(Context context, DeleteRequest request)Deletes a JSON resource.ConnectionConnectionFactory. getConnection()Returns a connection to the JSON resource provider associated with this connection factory.ActionResponseSynchronousRequestHandler. handleAction(Context context, ActionRequest request)Handles performing an action on a resource, and optionally returns an associated result.ResourceResponseSynchronousRequestHandler. handleCreate(Context context, CreateRequest request)Adds a new JSON resource.ResourceResponseSynchronousRequestHandler. handleDelete(Context context, DeleteRequest request)Deletes a JSON resource.ResourceResponseSynchronousRequestHandler. handlePatch(Context context, PatchRequest request)Updates a JSON resource by applying a set of changes to its existing content.QueryResponseSynchronousRequestHandler. handleQuery(Context context, QueryRequest request, Collection<ResourceResponse> resources)Searches for all JSON resources matching a user specified set of criteria.ResourceResponseSynchronousRequestHandler. handleRead(Context context, ReadRequest request)Reads a JSON resource.ResourceResponseSynchronousRequestHandler. handleUpdate(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content.ResourceResponseAbstractAsynchronousConnection. patch(Context context, PatchRequest request)ResourceResponseAbstractConnectionWrapper. patch(Context context, PatchRequest request)Updates a JSON resource by applying a set of changes to its existing content.ResourceResponseConnection. patch(Context context, PatchRequest request)Updates a JSON resource by applying a set of changes to its existing content.QueryResponseAbstractAsynchronousConnection. query(Context context, QueryRequest request, Collection<? super ResourceResponse> results)QueryResponseAbstractAsynchronousConnection. query(Context context, QueryRequest request, QueryResourceHandler handler)QueryResponseAbstractConnectionWrapper. query(Context context, QueryRequest request, Collection<? super ResourceResponse> results)Searches for all JSON resources matching a user specified set of criteria, and places the results in the provided collection.QueryResponseAbstractConnectionWrapper. query(Context context, QueryRequest request, QueryResourceHandler handler)Searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.QueryResponseConnection. query(Context context, QueryRequest request, Collection<? super ResourceResponse> results)Searches for all JSON resources matching a user specified set of criteria, and places the results in the provided collection.QueryResponseConnection. query(Context context, QueryRequest request, QueryResourceHandler handler)Searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.ResourceResponseAbstractAsynchronousConnection. read(Context context, ReadRequest request)ResourceResponseAbstractConnectionWrapper. read(Context context, ReadRequest request)Reads a JSON resource.ResourceResponseConnection. read(Context context, ReadRequest request)Reads a JSON resource.ResourceResponseAbstractAsynchronousConnection. update(Context context, UpdateRequest request)ResourceResponseAbstractConnectionWrapper. update(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content.ResourceResponseConnection. update(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content. -
Uses of ResourceException in org.forgerock.monitoring
Methods in org.forgerock.monitoring that return types with arguments of type ResourceException Modifier and Type Method Description Promise<QueryResponse,ResourceException>DropwizardMetricsCollectionResourceProvider. queryCollection(Context context, QueryRequest request, QueryResourceHandler handler)Promise<ResourceResponse,ResourceException>DropwizardMetricsCollectionResourceProvider. readInstance(Context context, String resourceId, ReadRequest request) -
Uses of ResourceException in org.forgerock.openam.integration.idm
Methods in org.forgerock.openam.integration.idm with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw ResourceException Modifier and Type Method Description Map<String,Object>IdmIntegrationServiceScriptWrapper. action(String resource, String actionName)Performs an action on an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. action(String resource, String actionName, Map<String,Object> content)Performs an action on an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. action(String resource, String actionName, Map<String,Object> content, Map<String,Object> params)Performs an action on an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. action(String resource, String actionName, Map<String,Object> content, Map<String,Object> params, List<Object> fields)Performs an action on an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. create(String resourceName, String newResourceId, Map<String,Object> content)Creates a new object in IDM.Map<String,Object>IdmIntegrationServiceScriptWrapper. create(String resourceName, String newResourceId, Map<String,Object> content, Map<String,Object> params)Creates a new object in IDM.Map<String,Object>IdmIntegrationServiceScriptWrapper. create(String resourceName, String newResourceId, Map<String,Object> content, Map<String,Object> params, List<Object> fields)Creates a new object in IDM.Map<String,Object>IdmIntegrationServiceScriptWrapper. delete(String resourceName, String rev)Deletes an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. delete(String resourceName, String rev, Map<String,Object> params)Deletes an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. delete(String resourceName, String rev, Map<String,Object> params, List<Object> fields)Deletes an object.Map<String,Object>IdmIntegrationServiceScriptWrapper. patch(String resourceName, String rev, List<Object> patch)Performs a partial modification of a managed or system object.Map<String,Object>IdmIntegrationServiceScriptWrapper. patch(String resourceName, String rev, List<Object> patch, Map<String,Object> params)Performs a partial modification of a managed or system object.Map<String,Object>IdmIntegrationServiceScriptWrapper. patch(String resourceName, String rev, List<Object> patch, Map<String,Object> params, List<Object> fields)Performs a partial modification of a managed or system object.Map<String,Object>IdmIntegrationServiceScriptWrapper. query(String resourceName, Map<String,Object> params)Performs a query on the specified resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. query(String resourceName, Map<String,Object> params, List<Object> fields)Performs a query on the specified resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. read(String resourceName)Reads and returns a resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. read(String resourceName, Map<String,Object> params)Reads and returns a resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. read(String resourceName, Map<String,Object> params, List<Object> fields)Reads and returns a resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. update(String id, String rev, Map<String,Object> value)Updates an entire resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. update(String id, String rev, Map<String,Object> value, Map<String,Object> params)Updates an entire resource object.Map<String,Object>IdmIntegrationServiceScriptWrapper. update(String id, String rev, Map<String,Object> value, Map<String,Object> params, List<Object> fields)Updates an entire resource object. -
Uses of ResourceException in org.forgerock.openam.rest.resource
-
Uses of ResourceException in org.forgerock.openam.sts
Subclasses of ResourceException in org.forgerock.openam.sts Modifier and Type Class Description classTokenCreationExceptionAn instance of this exception is thrown for errors encountered during token creation.classTokenValidationExceptionAn instance of this exception is thrown for all errors related to token validation. -
Uses of ResourceException in org.forgerock.openam.uma.extensions
Methods in org.forgerock.openam.uma.extensions that throw ResourceException Modifier and Type Method Description voidResourceDelegationFilter. beforeResourceShared(org.forgerock.openam.uma.UmaPolicy umaPolicy)Invoked before a resource "share" is created.voidResourceDelegationFilter. beforeResourceSharedModification(org.forgerock.openam.uma.UmaPolicy currentUmaPolicy, org.forgerock.openam.uma.UmaPolicy updatedUmaPolicy)Invoked before a resource "share" is modified.voidResourceDelegationFilter. onResourceSharedDeletion(org.forgerock.openam.uma.UmaPolicy umaPolicy)Invoked before a resource "share" is deleted. -
Uses of ResourceException in org.forgerock.selfservice.core
Methods in org.forgerock.selfservice.core that return types with arguments of type ResourceException Modifier and Type Method Description Promise<ActionResponse,ResourceException>AnonymousProcessService. handleAction(Context context, ActionRequest request)Promise<ResourceResponse,ResourceException>AnonymousProcessService. handleRead(Context context, ReadRequest request)Promise<ResourceResponse,ResourceException>UserUpdateService. patchInstance(Context context, String resourceId, PatchRequest request)Methods in org.forgerock.selfservice.core that throw ResourceException Modifier and Type Method Description StageResponseProgressStage. advance(ProcessContext context, C config)Advance the progress stage.StageResponseProgressStageBinding. advance(ProcessContext context)Advance the progress stage.JsonValueProgressStage. gatherInitialRequirements(ProcessContext context, C config)Response for defining any initial requirements the stage may have.JsonValueProgressStageBinding. gatherInitialRequirements(ProcessContext context)Response for defining any initial requirements the bound stage may have. -
Uses of ResourceException in org.forgerock.selfservice.core.snapshot
Methods in org.forgerock.selfservice.core.snapshot that throw ResourceException Modifier and Type Method Description voidSnapshotTokenCallback. snapshotTokenPreview(ProcessContext context, String snapshotToken)Preview of the snapshot token just prior to requirements being sent to the client. -
Uses of ResourceException in org.forgerock.selfservice.core.util
Methods in org.forgerock.selfservice.core.util that throw ResourceException Modifier and Type Method Description voidSecurityAnswer. verifyAndHashInput(CryptoService cryptoService, JsonValue kba, Map<String,Map<String,String>> kbaQuestions)Verifies and hashes the input provided for security questions and answers.voidSecurityAnswer. verifyAndHashInput(CryptoService cryptoService, JsonValue cryptoConfig, JsonValue kba, Map<String,Map<String,String>> kbaQuestions)Verifies and hashes the input provided for security questions and answers. -
Uses of ResourceException in org.forgerock.selfservice.stages.captcha
Methods in org.forgerock.selfservice.stages.captcha that throw ResourceException Modifier and Type Method Description StageResponseCaptchaStage. advance(ProcessContext context, CaptchaStageConfig config)JsonValueCaptchaStage. gatherInitialRequirements(ProcessContext context, CaptchaStageConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.email
Methods in org.forgerock.selfservice.stages.email that throw ResourceException Modifier and Type Method Description StageResponseRetrieveEmailStage. advance(ProcessContext context, RetrieveEmailConfig config)StageResponseVerifyEmailAccountStage. advance(ProcessContext context, VerifyEmailAccountConfig config)JsonValueRetrieveEmailStage. gatherInitialRequirements(ProcessContext context, RetrieveEmailConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.kba
Methods in org.forgerock.selfservice.stages.kba that throw ResourceException Modifier and Type Method Description StageResponseSecurityAnswerDefinitionStage. advance(ProcessContext context, SecurityAnswerDefinitionConfig config)StageResponseSecurityAnswerVerificationStage. advance(ProcessContext context, SecurityAnswerVerificationConfig config)JsonValueSecurityAnswerDefinitionStage. gatherInitialRequirements(ProcessContext context, SecurityAnswerDefinitionConfig config)JsonValueSecurityAnswerVerificationStage. gatherInitialRequirements(ProcessContext context, SecurityAnswerVerificationConfig config)voidSecurityAnswerLockoutManager. handleSecurityAnswerMatchFailure(Context context, JsonValue user, String identityServiceUrl)Handle the security answer match failure. -
Uses of ResourceException in org.forgerock.selfservice.stages.parameters
Methods in org.forgerock.selfservice.stages.parameters that throw ResourceException Modifier and Type Method Description StageResponseParametersStage. advance(ProcessContext context, ParametersConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.registration
Methods in org.forgerock.selfservice.stages.registration that throw ResourceException Modifier and Type Method Description StageResponseUserRegistrationStage. advance(ProcessContext context, UserRegistrationConfig config)JsonValueUserRegistrationStage. gatherInitialRequirements(ProcessContext context, UserRegistrationConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.reset
Methods in org.forgerock.selfservice.stages.reset that throw ResourceException Modifier and Type Method Description StageResponseResetStage. advance(ProcessContext context, ResetStageConfig config)JsonValueResetStage. gatherInitialRequirements(ProcessContext context, ResetStageConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.user
-