Package | Description |
---|---|
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.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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Class and 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
other
BadRequestException 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.
|
Modifier and Type | Method and Description |
---|---|
<E extends ResourceException> |
ResourceException.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> |
ResourceException.setDetail(JsonValue detail)
Sets the additional detail which can be evaluated by applications.
|
<E extends ResourceException> |
ResourceException.setReason(String reason)
Sets/overrides the short reason phrase of the exception.
|
Modifier and Type | Method and Description |
---|---|
static ResourceException |
ResourceException.getException(int code)
Deprecated.
in favor of
ResourceException.newResourceException(int) |
static ResourceException |
ResourceException.getException(int code,
String message)
Deprecated.
|
static ResourceException |
ResourceException.getException(int code,
String message,
Throwable cause)
Deprecated.
|
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 Type | Method and Description |
---|---|
Promise<ActionResponse,ResourceException> |
Connection.actionAsync(Context context,
ActionRequest request)
Asynchronously performs an action against a specific resource, or set of
resources.
|
Promise<ActionResponse,ResourceException> |
AbstractConnectionWrapper.actionAsync(Context context,
ActionRequest request)
Asynchronously performs an action against a specific resource, or set of
resources.
|
Promise<ActionResponse,ResourceException> |
MemoryBackend.actionCollection(Context context,
ActionRequest request)
Performs the provided
action
against the resource collection. |
default Promise<ActionResponse,ResourceException> |
CollectionResourceProvider.actionCollection(Context context,
ActionRequest request)
Performs the provided
action
against the resource collection. |
default Promise<ActionResponse,ResourceException> |
SingletonResourceProvider.actionInstance(Context context,
ActionRequest request)
Performs the provided
action against the single resource instance. |
Promise<ActionResponse,ResourceException> |
MemoryBackend.actionInstance(Context context,
String id,
ActionRequest request)
Performs the provided
action against a resource within the collection. |
default Promise<ActionResponse,ResourceException> |
CollectionResourceProvider.actionInstance(Context context,
String resourceId,
ActionRequest request)
Performs the provided
action against a resource within the collection. |
Promise<ResourceResponse,ResourceException> |
ResourceResponse.asPromise()
Return this response as a result Promise.
|
Promise<QueryResponse,ResourceException> |
QueryResponse.asPromise()
Return this response as a result Promise.
|
Promise<ActionResponse,ResourceException> |
ActionResponse.asPromise()
Return this response as a result Promise.
|
<V> Promise<V,ResourceException> |
ResourceException.asPromise()
Return this ResourceException as a Promise.
|
Promise<ResourceResponse,ResourceException> |
Connection.createAsync(Context context,
CreateRequest request)
Asynchronously adds a new JSON resource.
|
Promise<ResourceResponse,ResourceException> |
AbstractConnectionWrapper.createAsync(Context context,
CreateRequest request)
Asynchronously adds a new JSON resource.
|
Promise<ResourceResponse,ResourceException> |
MemoryBackend.createInstance(Context context,
CreateRequest request)
Adds a new resource instance to the collection. |
default Promise<ResourceResponse,ResourceException> |
CollectionResourceProvider.createInstance(Context context,
CreateRequest request)
Adds a new resource instance to the collection. |
Promise<ResourceResponse,ResourceException> |
Connection.deleteAsync(Context context,
DeleteRequest request)
Asynchronously deletes a JSON resource.
|
Promise<ResourceResponse,ResourceException> |
AbstractConnectionWrapper.deleteAsync(Context context,
DeleteRequest request)
Asynchronously deletes a JSON resource.
|
Promise<ResourceResponse,ResourceException> |
MemoryBackend.deleteInstance(Context context,
String id,
DeleteRequest request)
Removes a resource instance from the collection. |
default Promise<ResourceResponse,ResourceException> |
CollectionResourceProvider.deleteInstance(Context context,
String resourceId,
DeleteRequest request)
Removes a resource instance from the collection. |
Promise<ActionResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterAction(Context context,
ActionRequest request,
RequestHandler next) |
Promise<ActionResponse,ResourceException> |
Filter.filterAction(Context context,
ActionRequest request,
RequestHandler next)
Filters an action request.
|
Promise<ResourceResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterCreate(Context context,
CreateRequest request,
RequestHandler next) |
Promise<ResourceResponse,ResourceException> |
Filter.filterCreate(Context context,
CreateRequest request,
RequestHandler next)
Filters a create request.
|
Promise<ResourceResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterDelete(Context context,
DeleteRequest request,
RequestHandler next) |
Promise<ResourceResponse,ResourceException> |
Filter.filterDelete(Context context,
DeleteRequest request,
RequestHandler next)
Filters a delete request.
|
Promise<ResourceResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterPatch(Context context,
PatchRequest request,
RequestHandler next) |
Promise<ResourceResponse,ResourceException> |
Filter.filterPatch(Context context,
PatchRequest request,
RequestHandler next)
Filters a patch request.
|
Promise<QueryResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterQuery(Context context,
QueryRequest request,
QueryResourceHandler handler,
RequestHandler next) |
Promise<QueryResponse,ResourceException> |
Filter.filterQuery(Context context,
QueryRequest request,
QueryResourceHandler handler,
RequestHandler next)
Filters a query request.
|
Promise<ResourceResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterRead(Context context,
ReadRequest request,
RequestHandler next) |
Promise<ResourceResponse,ResourceException> |
Filter.filterRead(Context context,
ReadRequest request,
RequestHandler next)
Filters a read request.
|
Promise<ResourceResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterUpdate(Context context,
UpdateRequest request,
RequestHandler next) |
Promise<ResourceResponse,ResourceException> |
Filter.filterUpdate(Context context,
UpdateRequest request,
RequestHandler next)
Filters an update request.
|
Promise<Connection,ResourceException> |
ConnectionFactory.getConnectionAsync()
Asynchronously obtains a connection to the JSON resource provider
associated with this connection factory.
|
Promise<ActionResponse,ResourceException> |
Router.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> |
FilterChain.handleAction(Context context,
ActionRequest request) |
Promise<ResourceResponse,ResourceException> |
Router.handleCreate(Context context,
CreateRequest request) |
default Promise<ResourceResponse,ResourceException> |
RequestHandler.handleCreate(Context context,
CreateRequest request)
Adds a new JSON resource, returning a
Promise that will be
completed when the resource has been added. |
Promise<ResourceResponse,ResourceException> |
FilterChain.handleCreate(Context context,
CreateRequest request) |
Promise<ResourceResponse,ResourceException> |
Router.handleDelete(Context context,
DeleteRequest request) |
default Promise<ResourceResponse,ResourceException> |
RequestHandler.handleDelete(Context context,
DeleteRequest request)
Deletes a JSON resource, returning a
Promise that will be
completed when the resource has been deleted. |
Promise<ResourceResponse,ResourceException> |
FilterChain.handleDelete(Context context,
DeleteRequest request) |
Promise<ResourceResponse,ResourceException> |
Router.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 a
Promise that will be completed when the
resource has been updated. |
Promise<ResourceResponse,ResourceException> |
FilterChain.handlePatch(Context context,
PatchRequest request) |
Promise<QueryResponse,ResourceException> |
Router.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 a
Promise that will be completed when the
search has completed. |
Promise<QueryResponse,ResourceException> |
FilterChain.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler) |
Promise<ResourceResponse,ResourceException> |
Router.handleRead(Context context,
ReadRequest request) |
default Promise<ResourceResponse,ResourceException> |
RequestHandler.handleRead(Context context,
ReadRequest request)
Reads a JSON resource, returning a
Promise that will be
completed when the resource has been read. |
Promise<ResourceResponse,ResourceException> |
FilterChain.handleRead(Context context,
ReadRequest request) |
Promise<ResourceResponse,ResourceException> |
Router.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 a
Promise that will be completed when the
resource has been updated. |
Promise<ResourceResponse,ResourceException> |
FilterChain.handleUpdate(Context context,
UpdateRequest request) |
Promise<ResourceResponse,ResourceException> |
Connection.patchAsync(Context context,
PatchRequest request)
Asynchronously updates a JSON resource by applying a set of changes to
its existing content.
|
Promise<ResourceResponse,ResourceException> |
AbstractConnectionWrapper.patchAsync(Context context,
PatchRequest request)
Asynchronously updates a JSON resource by applying a set of changes to
its existing content.
|
default Promise<ResourceResponse,ResourceException> |
SingletonResourceProvider.patchInstance(Context context,
PatchRequest request)
Patches the single resource instance. |
Promise<ResourceResponse,ResourceException> |
MemoryBackend.patchInstance(Context context,
String id,
PatchRequest request)
Patches an existing resource within the collection. |
default Promise<ResourceResponse,ResourceException> |
CollectionResourceProvider.patchInstance(Context context,
String resourceId,
PatchRequest request)
Patches an existing resource within the collection. |
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 a
Promise that will be completed with the
results of the search. |
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 a
Promise that will be completed with the
results of the search. |
Promise<QueryResponse,ResourceException> |
MemoryBackend.queryCollection(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches the collection for all resources which match the query request
criteria. |
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<ResourceResponse,ResourceException> |
Connection.readAsync(Context context,
ReadRequest request)
Asynchronously reads a JSON resource.
|
Promise<ResourceResponse,ResourceException> |
AbstractConnectionWrapper.readAsync(Context context,
ReadRequest request)
Asynchronously reads a JSON resource.
|
default Promise<ResourceResponse,ResourceException> |
SingletonResourceProvider.readInstance(Context context,
ReadRequest request)
Reads the single resource instance. |
Promise<ResourceResponse,ResourceException> |
MemoryBackend.readInstance(Context context,
String id,
ReadRequest request)
Reads an existing resource within the collection. |
default Promise<ResourceResponse,ResourceException> |
CollectionResourceProvider.readInstance(Context context,
String resourceId,
ReadRequest request)
Reads an existing resource within the collection. |
Promise<ResourceResponse,ResourceException> |
Connection.updateAsync(Context context,
UpdateRequest request)
Asynchronously updates a JSON resource by replacing its existing content
with new content.
|
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> |
MemoryBackend.updateInstance(Context context,
String id,
UpdateRequest request)
Updates an existing resource within the collection. |
default Promise<ResourceResponse,ResourceException> |
CollectionResourceProvider.updateInstance(Context context,
String resourceId,
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 Type | Method and Description |
---|---|
ActionResponse |
Connection.action(Context context,
ActionRequest request)
Performs an action against a specific resource, or set of resources.
|
ActionResponse |
AbstractConnectionWrapper.action(Context context,
ActionRequest request)
Performs an action against a specific resource, or set of resources.
|
ActionResponse |
AbstractAsynchronousConnection.action(Context context,
ActionRequest request) |
ResourceResponse |
Connection.create(Context context,
CreateRequest request)
Adds a new JSON resource.
|
ResourceResponse |
AbstractConnectionWrapper.create(Context context,
CreateRequest request)
Adds a new JSON resource.
|
ResourceResponse |
AbstractAsynchronousConnection.create(Context context,
CreateRequest request) |
ResourceResponse |
Connection.delete(Context context,
DeleteRequest request)
Deletes a JSON resource.
|
ResourceResponse |
AbstractConnectionWrapper.delete(Context context,
DeleteRequest request)
Deletes a JSON resource.
|
ResourceResponse |
AbstractAsynchronousConnection.delete(Context context,
DeleteRequest request) |
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 |
Connection.patch(Context context,
PatchRequest request)
Updates a JSON resource by applying a set of changes to its existing
content.
|
ResourceResponse |
AbstractConnectionWrapper.patch(Context context,
PatchRequest request)
Updates a JSON resource by applying a set of changes to its existing
content.
|
ResourceResponse |
AbstractAsynchronousConnection.patch(Context context,
PatchRequest request) |
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 |
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 |
AbstractAsynchronousConnection.query(Context context,
QueryRequest request,
Collection<? super ResourceResponse> results) |
QueryResponse |
Connection.query(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of
criteria, and returns a
Promise that will be completed with the
results of the search. |
QueryResponse |
AbstractConnectionWrapper.query(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of
criteria, and returns a
Promise that will be completed with the
results of the search. |
QueryResponse |
AbstractAsynchronousConnection.query(Context context,
QueryRequest request,
QueryResourceHandler handler) |
ResourceResponse |
Connection.read(Context context,
ReadRequest request)
Reads a JSON resource.
|
ResourceResponse |
AbstractConnectionWrapper.read(Context context,
ReadRequest request)
Reads a JSON resource.
|
ResourceResponse |
AbstractAsynchronousConnection.read(Context context,
ReadRequest request) |
ResourceResponse |
Connection.update(Context context,
UpdateRequest request)
Updates a JSON resource by replacing its existing content with new
content.
|
ResourceResponse |
AbstractConnectionWrapper.update(Context context,
UpdateRequest request)
Updates a JSON resource by replacing its existing content with new
content.
|
ResourceResponse |
AbstractAsynchronousConnection.update(Context context,
UpdateRequest request) |
Modifier and Type | Class and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
ResourceDelegationFilter.beforeResourceShared(UmaPolicy umaPolicy)
Invoked before a resource "share" is created.
|
void |
ResourceDelegationFilter.beforeResourceSharedModification(UmaPolicy currentUmaPolicy,
UmaPolicy updatedUmaPolicy)
Invoked before a resource "share" is modified.
|
void |
ResourceDelegationFilter.onResourceSharedDeletion(UmaPolicy umaPolicy)
Invoked before a resource "share" is deleted.
|
Modifier and Type | Method and 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) |
Modifier and Type | Method and Description |
---|---|
StageResponse |
ProgressStageBinding.advance(ProcessContext context)
Advance the progress stage.
|
StageResponse |
ProgressStage.advance(ProcessContext context,
C config)
Advance the progress stage.
|
JsonValue |
ProgressStageBinding.gatherInitialRequirements(ProcessContext context)
Response for defining any initial requirements the bound stage may have.
|
JsonValue |
ProgressStage.gatherInitialRequirements(ProcessContext context,
C config)
Response for defining any initial requirements the stage may have.
|
Modifier and Type | Method and Description |
---|---|
void |
SnapshotTokenCallback.snapshotTokenPreview(ProcessContext context,
String snapshotToken)
Preview of the snapshot token just prior to requirements being sent to the client.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
StageResponse |
CaptchaStage.advance(ProcessContext context,
CaptchaStageConfig config) |
JsonValue |
CaptchaStage.gatherInitialRequirements(ProcessContext context,
CaptchaStageConfig config) |
Modifier and Type | Method and Description |
---|---|
StageResponse |
RetrieveEmailStage.advance(ProcessContext context,
RetrieveEmailConfig config) |
StageResponse |
VerifyEmailAccountStage.advance(ProcessContext context,
VerifyEmailAccountConfig config) |
JsonValue |
RetrieveEmailStage.gatherInitialRequirements(ProcessContext context,
RetrieveEmailConfig config) |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
StageResponse |
ParametersStage.advance(ProcessContext context,
ParametersConfig config) |
Modifier and Type | Method and Description |
---|---|
StageResponse |
UserRegistrationStage.advance(ProcessContext context,
UserRegistrationConfig config) |
JsonValue |
UserRegistrationStage.gatherInitialRequirements(ProcessContext context,
UserRegistrationConfig config) |
Modifier and Type | Method and Description |
---|---|
StageResponse |
ResetStage.advance(ProcessContext context,
ResetStageConfig config) |
JsonValue |
ResetStage.gatherInitialRequirements(ProcessContext context,
ResetStageConfig config) |
Copyright © 2010-2018, ForgeRock All Rights Reserved.