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 class
BadRequestException
An exception that is thrown during a operation on a resource when the requested operation is malformed.class
ConflictException
An exception that is thrown during a operation on a resource when such an operation would result in a conflict.class
CreateNotSupportedException
A specific exception for when Create is not supported, but Upsert might be being attempted so distinguish from otherBadRequestException
s.class
ForbiddenException
An exception that is thrown when access to a resource is forbidden during an operation on an resource.class
InternalServerErrorException
An exception that is thrown during an operation on a resource when the server encountered an unexpected condition which prevented it from fulfilling the request.class
NotFoundException
An exception that is thrown when a specified resource cannot be found.class
NotSupportedException
An exception that is thrown during an operation on a resource when the resource does not implement/support the feature to fulfill the request.class
PermanentException
An exception that indicates that a failure is permanent, i.e.class
PreconditionFailedException
An exception that is thrown to indicate that a resource's current version does not match the version provided.class
PreconditionRequiredException
An exception that is thrown to indicate that a resource requires a version, but no version was supplied in the request.class
RetryableException
An exception that indicates that a failure may be temporary, and that retrying the same request may be able to succeed in the future.class
ServiceUnavailableException
An exception that is thrown during an operation on a resource when the server is temporarily unable to handle the request.class
UncategorizedException
An 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.class
UnsupportedMediaTypeException
Indicates 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 ResourceException
ResourceException. getException(int code)
Deprecated.in favor ofnewResourceException(int)
static ResourceException
ResourceException. getException(int code, String message)
Deprecated.in favor ofnewResourceException(int, String)
static ResourceException
ResourceException. getException(int code, String message, Throwable cause)
Deprecated.in favor ofnewResourceException(int, String, Throwable)
static ResourceException
ResourceException. newResourceException(int code)
Returns an exception with the specified HTTP error code, but no detail message or cause, and a default reason phrase.static ResourceException
ResourceException. 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 ResourceException
ResourceException. 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 providedaction
against the resource collection.Promise<ActionResponse,ResourceException>
MemoryBackend. actionCollection(Context context, ActionRequest request)
Performs the providedaction
against the resource collection.default Promise<ActionResponse,ResourceException>
CollectionResourceProvider. actionInstance(Context context, String resourceId, ActionRequest request)
Performs the providedaction
against a resource within the collection.Promise<ActionResponse,ResourceException>
MemoryBackend. actionInstance(Context context, String id, ActionRequest request)
Performs the providedaction
against a resource within the collection.default Promise<ActionResponse,ResourceException>
SingletonResourceProvider. actionInstance(Context context, ActionRequest request)
Performs the providedaction
against 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)
Adds
a new resource instance to the collection.Promise<ResourceResponse,ResourceException>
MemoryBackend. createInstance(Context context, CreateRequest request)
Adds
a 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)
Removes
a resource instance from the collection.Promise<ResourceResponse,ResourceException>
MemoryBackend. deleteInstance(Context context, String id, DeleteRequest request)
Removes
a 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 aPromise
that 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 aPromise
that 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 aPromise
that 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 aPromise
that 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 aPromise
that 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 aPromise
that 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)
Patches
an existing resource within the collection.Promise<ResourceResponse,ResourceException>
MemoryBackend. patchInstance(Context context, String id, PatchRequest request)
Patches
an existing resource within the collection.default Promise<ResourceResponse,ResourceException>
SingletonResourceProvider. patchInstance(Context context, PatchRequest request)
Patches
the 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 aPromise
that 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 aPromise
that will be completed with the results of the search.default Promise<QueryResponse,ResourceException>
CollectionResourceProvider. queryCollection(Context context, QueryRequest request, QueryResourceHandler handler)
Searches
the collection for all resources which match the query request criteria.Promise<QueryResponse,ResourceException>
MemoryBackend. queryCollection(Context context, QueryRequest request, QueryResourceHandler handler)
Searches
the 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)
Reads
an existing resource within the collection.Promise<ResourceResponse,ResourceException>
MemoryBackend. readInstance(Context context, String id, ReadRequest request)
Reads
an existing resource within the collection.default Promise<ResourceResponse,ResourceException>
SingletonResourceProvider. readInstance(Context context, ReadRequest request)
Reads
the 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)
Updates
an existing resource within the collection.Promise<ResourceResponse,ResourceException>
MemoryBackend. updateInstance(Context context, String id, UpdateRequest request)
Updates
an existing resource within the collection.default Promise<ResourceResponse,ResourceException>
SingletonResourceProvider. updateInstance(Context context, UpdateRequest request)
Updates
the single resource instance.Methods in org.forgerock.json.resource that throw ResourceException Modifier and Type Method Description ActionResponse
AbstractAsynchronousConnection. action(Context context, ActionRequest request)
ActionResponse
AbstractConnectionWrapper. action(Context context, ActionRequest request)
Performs an action against a specific resource, or set of resources.ActionResponse
Connection. action(Context context, ActionRequest request)
Performs an action against a specific resource, or set of resources.ResourceResponse
AbstractAsynchronousConnection. create(Context context, CreateRequest request)
ResourceResponse
AbstractConnectionWrapper. create(Context context, CreateRequest request)
Adds a new JSON resource.ResourceResponse
Connection. create(Context context, CreateRequest request)
Adds a new JSON resource.ResourceResponse
AbstractAsynchronousConnection. delete(Context context, DeleteRequest request)
ResourceResponse
AbstractConnectionWrapper. delete(Context context, DeleteRequest request)
Deletes a JSON resource.ResourceResponse
Connection. delete(Context context, DeleteRequest request)
Deletes a JSON resource.Connection
ConnectionFactory. getConnection()
Returns a connection to the JSON resource provider associated with this connection factory.ActionResponse
SynchronousRequestHandler. handleAction(Context context, ActionRequest request)
Handles performing an action on a resource, and optionally returns an associated result.ResourceResponse
SynchronousRequestHandler. handleCreate(Context context, CreateRequest request)
Adds a new JSON resource.ResourceResponse
SynchronousRequestHandler. handleDelete(Context context, DeleteRequest request)
Deletes a JSON resource.ResourceResponse
SynchronousRequestHandler. handlePatch(Context context, PatchRequest request)
Updates a JSON resource by applying a set of changes to its existing content.QueryResponse
SynchronousRequestHandler. handleQuery(Context context, QueryRequest request, Collection<ResourceResponse> resources)
Searches for all JSON resources matching a user specified set of criteria.ResourceResponse
SynchronousRequestHandler. handleRead(Context context, ReadRequest request)
Reads a JSON resource.ResourceResponse
SynchronousRequestHandler. handleUpdate(Context context, UpdateRequest request)
Updates a JSON resource by replacing its existing content with new content.ResourceResponse
AbstractAsynchronousConnection. patch(Context context, PatchRequest request)
ResourceResponse
AbstractConnectionWrapper. patch(Context context, PatchRequest request)
Updates a JSON resource by applying a set of changes to its existing content.ResourceResponse
Connection. patch(Context context, PatchRequest request)
Updates a JSON resource by applying a set of changes to its existing content.QueryResponse
AbstractAsynchronousConnection. query(Context context, QueryRequest request, Collection<? super ResourceResponse> results)
QueryResponse
AbstractAsynchronousConnection. query(Context context, QueryRequest request, QueryResourceHandler handler)
QueryResponse
AbstractConnectionWrapper. 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.QueryResponse
AbstractConnectionWrapper. query(Context context, QueryRequest request, QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of criteria, and returns aPromise
that will be completed with the results of the search.QueryResponse
Connection. 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.QueryResponse
Connection. query(Context context, QueryRequest request, QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of criteria, and returns aPromise
that will be completed with the results of the search.ResourceResponse
AbstractAsynchronousConnection. read(Context context, ReadRequest request)
ResourceResponse
AbstractConnectionWrapper. read(Context context, ReadRequest request)
Reads a JSON resource.ResourceResponse
Connection. read(Context context, ReadRequest request)
Reads a JSON resource.ResourceResponse
AbstractAsynchronousConnection. update(Context context, UpdateRequest request)
ResourceResponse
AbstractConnectionWrapper. update(Context context, UpdateRequest request)
Updates a JSON resource by replacing its existing content with new content.ResourceResponse
Connection. 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 class
TokenCreationException
An instance of this exception is thrown for errors encountered during token creation.class
TokenValidationException
An 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 void
ResourceDelegationFilter. beforeResourceShared(org.forgerock.openam.uma.UmaPolicy umaPolicy)
Invoked before a resource "share" is created.void
ResourceDelegationFilter. beforeResourceSharedModification(org.forgerock.openam.uma.UmaPolicy currentUmaPolicy, org.forgerock.openam.uma.UmaPolicy updatedUmaPolicy)
Invoked before a resource "share" is modified.void
ResourceDelegationFilter. 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 StageResponse
ProgressStage. advance(ProcessContext context, C config)
Advance the progress stage.StageResponse
ProgressStageBinding. advance(ProcessContext context)
Advance the progress stage.JsonValue
ProgressStage. gatherInitialRequirements(ProcessContext context, C config)
Response for defining any initial requirements the stage may have.JsonValue
ProgressStageBinding. 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 void
SnapshotTokenCallback. 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 void
SecurityAnswer. verifyAndHashInput(CryptoService cryptoService, JsonValue kba, Map<String,Map<String,String>> kbaQuestions)
Verifies and hashes the input provided for security questions and answers.void
SecurityAnswer. 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 StageResponse
CaptchaStage. advance(ProcessContext context, CaptchaStageConfig config)
JsonValue
CaptchaStage. 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 StageResponse
RetrieveEmailStage. advance(ProcessContext context, RetrieveEmailConfig config)
StageResponse
VerifyEmailAccountStage. advance(ProcessContext context, VerifyEmailAccountConfig config)
JsonValue
RetrieveEmailStage. 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 StageResponse
SecurityAnswerDefinitionStage. advance(ProcessContext context, SecurityAnswerDefinitionConfig config)
StageResponse
SecurityAnswerVerificationStage. advance(ProcessContext context, SecurityAnswerVerificationConfig config)
JsonValue
SecurityAnswerDefinitionStage. gatherInitialRequirements(ProcessContext context, SecurityAnswerDefinitionConfig config)
JsonValue
SecurityAnswerVerificationStage. gatherInitialRequirements(ProcessContext context, SecurityAnswerVerificationConfig config)
void
SecurityAnswerLockoutManager. 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 StageResponse
ParametersStage. 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 StageResponse
UserRegistrationStage. advance(ProcessContext context, UserRegistrationConfig config)
JsonValue
UserRegistrationStage. 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 StageResponse
ResetStage. advance(ProcessContext context, ResetStageConfig config)
JsonValue
ResetStage. gatherInitialRequirements(ProcessContext context, ResetStageConfig config)
-
Uses of ResourceException in org.forgerock.selfservice.stages.user
-