Uses of Class
org.forgerock.json.resource.ResourceException
Package
Description
This package contains all classes pertaining to AM's IoT functionality.
This package defines the authorization API interfaces for use in a CREST environment.
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
Common utility classes for monitoring.
This package contains classes for the handling of REST request to CREST Resource endpoints with the concept of realms
in OpenAM built in.
Wrappers for improving the interface for AM objects using in scripts.
Base package for classes shared between the SOAP and REST STS.
Extension points for integrating with UMA functionality.
This package contains the core implementation for the anonymous process service.
This package contains the implementation for creating and management of snapshots.
This package contains core utility methods and classes.
This package contains captcha stage implementation.
This package contains a common email stage implementation.
This package contains a common user kba stage implementation.
This package contains a parameter passing stage implementation.
This package contains a common user registration stage implementation.
This package contains a common reset password stage implementation.
This package contains a common user related stage implementation.
-
Uses of ResourceException in org.forgerock.am.iot
Modifier and TypeMethodDescriptionThingsResource.actionInstance
(Context context, String id, ActionRequest request) ThingsAccessAuditFilter.filterAction
(Context context, ActionRequest request, RequestHandler next) ThingsResource.readInstance
(Context context, String id, ReadRequest request) -
Uses of ResourceException in org.forgerock.authz.filter.crest.api
Modifier and TypeMethodDescriptionCrestAuthorizationModule.authorizeAction
(Context context, ActionRequest request) Authorizes a received REST action request.CrestAuthorizationModule.authorizeCreate
(Context context, CreateRequest request) Authorizes a received REST create request.CrestAuthorizationModule.authorizeDelete
(Context context, DeleteRequest request) Authorizes a received REST delete request.CrestAuthorizationModule.authorizePatch
(Context context, PatchRequest request) Authorizes a received REST patch request.CrestAuthorizationModule.authorizeQuery
(Context context, QueryRequest request) Authorizes a received REST query request.CrestAuthorizationModule.authorizeRead
(Context context, ReadRequest request) Authorizes a received REST read request.CrestAuthorizationModule.authorizeUpdate
(Context context, UpdateRequest request) Authorizes a received REST update request. -
Uses of ResourceException in org.forgerock.json.resource
Modifier and TypeClassDescriptionclass
An exception that is thrown during a operation on a resource when the requested operation is malformed.class
An exception that is thrown during a operation on a resource when such an operation would result in a conflict.class
A specific exception for when Create is not supported, but Upsert might be being attempted so distinguish from otherBadRequestException
s.class
An exception that is thrown when access to a resource is forbidden during an operation on an resource.class
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
An exception that is thrown when a specified resource cannot be found.class
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
An exception that indicates that a failure is permanent, i.e.class
An exception that is thrown to indicate that a resource's current version does not match the version provided.class
An exception that is thrown to indicate that a resource requires a version, but no version was supplied in the request.class
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
An exception that is thrown during an operation on a resource when the server is temporarily unable to handle the request.class
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
Indicates a 415 Unsupported Media Type response that the Content-Type of the request was not acceptable.Modifier and TypeMethodDescriptionfinal <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.final <E extends ResourceException>
ESets the additional detail which can be evaluated by applications.final <E extends ResourceException>
ESets/overrides the short reason phrase of the exception.Modifier and TypeMethodDescriptionstatic ResourceException
ResourceException.getException
(int code) Deprecated.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.Modifier and TypeMethodDescriptionAbstractConnectionWrapper.actionAsync
(Context context, ActionRequest request) Asynchronously performs an action against a specific resource, or set of resources.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.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.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.ActionResponse.asPromise()
Return this response as a result Promise.QueryResponse.asPromise()
Return this response as a result Promise.<V> Promise<V,
ResourceException> ResourceException.asPromise()
Return this ResourceException as a Promise.ResourceResponse.asPromise()
Return this response as a result Promise.AbstractConnectionWrapper.createAsync
(Context context, CreateRequest request) Asynchronously adds a new JSON resource.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.MemoryBackend.createInstance
(Context context, CreateRequest request) Adds
a new resource instance to the collection.AbstractConnectionWrapper.deleteAsync
(Context context, DeleteRequest request) Asynchronously deletes a JSON resource.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.MemoryBackend.deleteInstance
(Context context, String id, DeleteRequest request) Removes
a resource instance from the collection.Filter.filterAction
(Context context, ActionRequest request, RequestHandler next) Filters an action request.ResourceApiVersionRoutingFilter.filterAction
(Context context, ActionRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterAction
(Context context, ActionRequest request, RequestHandler next) Filter.filterCreate
(Context context, CreateRequest request, RequestHandler next) Filters a create request.ResourceApiVersionRoutingFilter.filterCreate
(Context context, CreateRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterCreate
(Context context, CreateRequest request, RequestHandler next) Filter.filterDelete
(Context context, DeleteRequest request, RequestHandler next) Filters a delete request.ResourceApiVersionRoutingFilter.filterDelete
(Context context, DeleteRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterDelete
(Context context, DeleteRequest request, RequestHandler next) Filter.filterPatch
(Context context, PatchRequest request, RequestHandler next) Filters a patch request.ResourceApiVersionRoutingFilter.filterPatch
(Context context, PatchRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterPatch
(Context context, PatchRequest request, RequestHandler next) Filter.filterQuery
(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) Filters a query request.ResourceApiVersionRoutingFilter.filterQuery
(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) ResourceApiVersionSpecificationFilter.filterQuery
(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) Filter.filterRead
(Context context, ReadRequest request, RequestHandler next) Filters a read request.ResourceApiVersionRoutingFilter.filterRead
(Context context, ReadRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterRead
(Context context, ReadRequest request, RequestHandler next) Filter.filterUpdate
(Context context, UpdateRequest request, RequestHandler next) Filters an update request.ResourceApiVersionRoutingFilter.filterUpdate
(Context context, UpdateRequest request, RequestHandler next) ResourceApiVersionSpecificationFilter.filterUpdate
(Context context, UpdateRequest request, RequestHandler next) ConnectionFactory.getConnectionAsync()
Asynchronously obtains a connection to the JSON resource provider associated with this connection factory.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.Router.handleAction
(Context context, ActionRequest request) 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.Router.handleCreate
(Context context, CreateRequest request) 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.Router.handleDelete
(Context context, DeleteRequest request) 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.Router.handlePatch
(Context context, PatchRequest request) 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.Router.handleQuery
(Context context, QueryRequest request, QueryResourceHandler handler) 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.Router.handleRead
(Context context, ReadRequest request) 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.Router.handleUpdate
(Context context, UpdateRequest request) AbstractConnectionWrapper.patchAsync
(Context context, PatchRequest request) Asynchronously updates a JSON resource by applying a set of changes to its existing content.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.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.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.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.MemoryBackend.queryCollection
(Context context, QueryRequest request, QueryResourceHandler handler) Searches
the collection for all resources which match the query request criteria.AbstractConnectionWrapper.readAsync
(Context context, ReadRequest request) Asynchronously reads a JSON resource.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.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.AbstractConnectionWrapper.updateAsync
(Context context, UpdateRequest request) Asynchronously updates a JSON resource by replacing its existing content with new content.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.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.Modifier and TypeMethodDescriptionAbstractAsynchronousConnection.action
(Context context, ActionRequest request) AbstractConnectionWrapper.action
(Context context, ActionRequest request) Performs an action against a specific resource, or set of resources.Connection.action
(Context context, ActionRequest request) Performs an action against a specific resource, or set of resources.AbstractAsynchronousConnection.create
(Context context, CreateRequest request) AbstractConnectionWrapper.create
(Context context, CreateRequest request) Adds a new JSON resource.Connection.create
(Context context, CreateRequest request) Adds a new JSON resource.AbstractAsynchronousConnection.delete
(Context context, DeleteRequest request) AbstractConnectionWrapper.delete
(Context context, DeleteRequest request) Deletes a JSON resource.Connection.delete
(Context context, DeleteRequest request) Deletes a JSON resource.ConnectionFactory.getConnection()
Returns a connection to the JSON resource provider associated with this connection factory.SynchronousRequestHandler.handleAction
(Context context, ActionRequest request) Handles performing an action on a resource, and optionally returns an associated result.SynchronousRequestHandler.handleCreate
(Context context, CreateRequest request) Adds a new JSON resource.SynchronousRequestHandler.handleDelete
(Context context, DeleteRequest request) Deletes a JSON resource.SynchronousRequestHandler.handlePatch
(Context context, PatchRequest request) Updates a JSON resource by applying a set of changes to its existing content.SynchronousRequestHandler.handleQuery
(Context context, QueryRequest request, Collection<ResourceResponse> resources) Searches for all JSON resources matching a user specified set of criteria.SynchronousRequestHandler.handleRead
(Context context, ReadRequest request) Reads a JSON resource.SynchronousRequestHandler.handleUpdate
(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.AbstractAsynchronousConnection.patch
(Context context, PatchRequest request) AbstractConnectionWrapper.patch
(Context context, PatchRequest request) Updates a JSON resource by applying a set of changes to its existing content.Connection.patch
(Context context, PatchRequest request) Updates a JSON resource by applying a set of changes to its existing content.AbstractAsynchronousConnection.query
(Context context, QueryRequest request, Collection<? super ResourceResponse> results) AbstractAsynchronousConnection.query
(Context context, QueryRequest request, QueryResourceHandler handler) 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.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.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.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.AbstractAsynchronousConnection.read
(Context context, ReadRequest request) AbstractConnectionWrapper.read
(Context context, ReadRequest request) Reads a JSON resource.Connection.read
(Context context, ReadRequest request) Reads a JSON resource.AbstractAsynchronousConnection.update
(Context context, UpdateRequest request) AbstractConnectionWrapper.update
(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.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
Modifier and TypeMethodDescriptionDropwizardMetricsCollectionResourceProvider.queryCollection
(Context context, QueryRequest request, QueryResourceHandler handler) DropwizardMetricsCollectionResourceProvider.readInstance
(Context context, String resourceId, ReadRequest request) -
Uses of ResourceException in org.forgerock.openam.rest.resource
Modifier and TypeMethodDescriptionRestrictedTokenContextFilter.filterAction
(Context context, ActionRequest request, RequestHandler next) RestrictedTokenContextFilter.filterCreate
(Context context, CreateRequest request, RequestHandler next) RestrictedTokenContextFilter.filterDelete
(Context context, DeleteRequest request, RequestHandler next) RestrictedTokenContextFilter.filterPatch
(Context context, PatchRequest request, RequestHandler next) RestrictedTokenContextFilter.filterQuery
(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) RestrictedTokenContextFilter.filterRead
(Context context, ReadRequest request, RequestHandler next) RestrictedTokenContextFilter.filterUpdate
(Context context, UpdateRequest request, RequestHandler next) -
Uses of ResourceException in org.forgerock.openam.scripting.wrappers
Modifier and TypeMethodDescriptionPerforms an action on an object.IdmIntegrationServiceScriptWrapper.action
(String resource, String actionName, Map<String, Object> content) Performs an action on an object.IdmIntegrationServiceScriptWrapper.action
(String resource, String actionName, Map<String, Object> content, Map<String, Object> params) Performs an action on an object.IdmIntegrationServiceScriptWrapper.action
(String resource, String actionName, Map<String, Object> content, Map<String, Object> params, List<Object> fields) Performs an action on an object.IdmIntegrationServiceScriptWrapper.create
(String resourceName, String newResourceId, Map<String, Object> content) Creates a new object in IDM.IdmIntegrationServiceScriptWrapper.create
(String resourceName, String newResourceId, Map<String, Object> content, Map<String, Object> params) Creates a new object in IDM.IdmIntegrationServiceScriptWrapper.create
(String resourceName, String newResourceId, Map<String, Object> content, Map<String, Object> params, List<Object> fields) Creates a new object in IDM.Deletes an object.IdmIntegrationServiceScriptWrapper.delete
(String resourceName, String rev, Map<String, Object> params) Deletes an object.IdmIntegrationServiceScriptWrapper.delete
(String resourceName, String rev, Map<String, Object> params, List<Object> fields) Deletes an object.Performs a partial modification of a managed or system object.IdmIntegrationServiceScriptWrapper.patch
(String resourceName, String rev, List<Object> patch, Map<String, Object> params) Performs a partial modification of a managed or system 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.Performs a query on the specified resource object.IdmIntegrationServiceScriptWrapper.query
(String resourceName, Map<String, Object> params, List<Object> fields) Performs a query on the specified resource object.Reads and returns a resource object.Reads and returns a resource object.IdmIntegrationServiceScriptWrapper.read
(String resourceName, Map<String, Object> params, List<Object> fields) Reads and returns a resource object.Updates an entire resource object.IdmIntegrationServiceScriptWrapper.update
(String id, String rev, Map<String, Object> value, Map<String, Object> params) Updates an entire resource 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.sts
Modifier and TypeClassDescriptionclass
An instance of this exception is thrown for errors encountered during token creation.class
An instance of this exception is thrown for all errors related to token validation. -
Uses of ResourceException in org.forgerock.openam.uma.extensions
Modifier and TypeMethodDescriptionvoid
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
Modifier and TypeMethodDescriptionAnonymousProcessService.handleAction
(Context context, ActionRequest request) AnonymousProcessService.handleRead
(Context context, ReadRequest request) UserUpdateService.patchInstance
(Context context, String resourceId, PatchRequest request) Modifier and TypeMethodDescriptionProgressStage.advance
(ProcessContext context, C config) Advance the progress stage.ProgressStageBinding.advance
(ProcessContext context) Advance the progress stage.ProgressStage.gatherInitialRequirements
(ProcessContext context, C config) Response for defining any initial requirements the stage may have.ProgressStageBinding.gatherInitialRequirements
(ProcessContext context) Response for defining any initial requirements the bound stage may have. -
Uses of ResourceException in org.forgerock.selfservice.core.snapshot
Modifier and TypeMethodDescriptionvoid
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
Modifier and TypeMethodDescriptionvoid
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
Modifier and TypeMethodDescriptionCaptchaStage.advance
(ProcessContext context, CaptchaStageConfig config) CaptchaStage.gatherInitialRequirements
(ProcessContext context, CaptchaStageConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.email
Modifier and TypeMethodDescriptionRetrieveEmailStage.advance
(ProcessContext context, RetrieveEmailConfig config) VerifyEmailAccountStage.advance
(ProcessContext context, VerifyEmailAccountConfig config) RetrieveEmailStage.gatherInitialRequirements
(ProcessContext context, RetrieveEmailConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.kba
Modifier and TypeMethodDescriptionSecurityAnswerDefinitionStage.advance
(ProcessContext context, SecurityAnswerDefinitionConfig config) SecurityAnswerVerificationStage.advance
(ProcessContext context, SecurityAnswerVerificationConfig config) SecurityAnswerDefinitionStage.gatherInitialRequirements
(ProcessContext context, SecurityAnswerDefinitionConfig config) 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
Modifier and TypeMethodDescriptionParametersStage.advance
(ProcessContext context, ParametersConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.registration
Modifier and TypeMethodDescriptionUserRegistrationStage.advance
(ProcessContext context, UserRegistrationConfig config) UserRegistrationStage.gatherInitialRequirements
(ProcessContext context, UserRegistrationConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.reset
Modifier and TypeMethodDescriptionResetStage.advance
(ProcessContext context, ResetStageConfig config) ResetStage.gatherInitialRequirements
(ProcessContext context, ResetStageConfig config) -
Uses of ResourceException in org.forgerock.selfservice.stages.user
Modifier and TypeMethodDescriptionEmailUsernameStage.advance
(ProcessContext context, EmailUsernameConfig config) RetrieveUsernameStage.advance
(ProcessContext context, RetrieveUsernameConfig config) UserDetailsStage.advance
(ProcessContext context, UserDetailsConfig config) UserQueryStage.advance
(ProcessContext context, UserQueryConfig config) ValidateActiveAccountStage.advance
(ProcessContext context, ValidateActiveAccountConfig config) EmailUsernameStage.gatherInitialRequirements
(ProcessContext context, EmailUsernameConfig config) RetrieveUsernameStage.gatherInitialRequirements
(ProcessContext context, RetrieveUsernameConfig config) UserDetailsStage.gatherInitialRequirements
(ProcessContext context, UserDetailsConfig config) UserQueryStage.gatherInitialRequirements
(ProcessContext context, UserQueryConfig config) ValidateActiveAccountStage.gatherInitialRequirements
(ProcessContext context, ValidateActiveAccountConfig config)
newResourceException(int)