Uses of Interface
org.forgerock.json.resource.ConnectionFactory
-
Packages that use ConnectionFactory Package Description org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.selfservice.core This package contains the core implementation for the anonymous process service.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.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 ConnectionFactory in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
CrestApplication. getConnectionFactory()
Get the connection factory for the application.static ConnectionFactory
Resources. newInternalConnectionFactory(RequestHandler handler)
Creates a new connection factory which binds internal client connections toRequestHandler
s.static ConnectionFactory
Resources. uncloseable(ConnectionFactory factory)
Returns an uncloseable view of the provided connection factory.Methods in org.forgerock.json.resource with parameters of type ConnectionFactory Modifier and Type Method Description static CrestApplication
Applications. multipartCrestApplication(ConnectionFactory factory, String id, String version)
Create a simpleCrestApplication
that allows multipart/form-data requests using the provided factory, id and version.static CrestApplication
Applications. simpleCrestApplication(ConnectionFactory factory, String id, String version)
Create a simpleCrestApplication
using the provided factory, id and version.static ConnectionFactory
Resources. uncloseable(ConnectionFactory factory)
Returns an uncloseable view of the provided connection factory. -
Uses of ConnectionFactory in org.forgerock.selfservice.core
Constructors in org.forgerock.selfservice.core with parameters of type ConnectionFactory Constructor Description UserUpdateService(ConnectionFactory connectionFactory, SecurityAnswer securityAnswer, ResourcePath identityService, KbaConfig kbaConfig)
Construct a service to update the user's KBA info. -
Uses of ConnectionFactory in org.forgerock.selfservice.stages.email
Constructors in org.forgerock.selfservice.stages.email with parameters of type ConnectionFactory Constructor Description VerifyEmailAccountStage(ConnectionFactory connectionFactory, EmailVerificationWhitelist whitelist, ExecutorService executorService)
Constructs a new stage. -
Uses of ConnectionFactory in org.forgerock.selfservice.stages.kba
Fields in org.forgerock.selfservice.stages.kba declared as ConnectionFactory Modifier and Type Field Description protected ConnectionFactory
AbstractKbaStage. connectionFactory
The CREST connectionFactory.Constructors in org.forgerock.selfservice.stages.kba with parameters of type ConnectionFactory Constructor Description AbstractKbaStage(ConnectionFactory connectionFactory)
Constructs a new AbstractKbaStage.SecurityAnswerDefinitionStage(ConnectionFactory connectionFactory, SecurityAnswer securityAnswer)
Constructs a new security answer definition stage.SecurityAnswerVerificationStage(ConnectionFactory connectionFactory, SecurityAnswerLockoutManager securityAnswerLockoutManager)
Constructs a new security answer verification stage. -
Uses of ConnectionFactory in org.forgerock.selfservice.stages.registration
Constructors in org.forgerock.selfservice.stages.registration with parameters of type ConnectionFactory Constructor Description UserRegistrationStage(ConnectionFactory connectionFactory)
Constructs a new user registration stage. -
Uses of ConnectionFactory in org.forgerock.selfservice.stages.reset
Constructors in org.forgerock.selfservice.stages.reset with parameters of type ConnectionFactory Constructor Description ResetStage(ConnectionFactory connectionFactory)
Constructs a new reset stage. -
Uses of ConnectionFactory in org.forgerock.selfservice.stages.user
Constructors in org.forgerock.selfservice.stages.user with parameters of type ConnectionFactory Constructor Description EmailUsernameStage(ConnectionFactory connectionFactory, ExecutorService executorService)
Constructs a new stage.UserQueryStage(ConnectionFactory connectionFactory)
Constructs a new user query stage.
-