Uses of Class
org.forgerock.http.Client
-
Packages that use Client Package Description org.forgerock.http.client This package contains the classes and interfaces related to the implementation of the HTTP client, and its use in scripted modules.org.forgerock.json.jose.jwk Classes and interfaces for creating and manipulating JWKs.org.forgerock.json.jose.jwk.store This package contains classes to manage a JWKs URI.org.forgerock.oauth.resolvers This package contains classes to generate Open ID Resolvers, which can validate a supplied JWS against an Open ID Connect provider.org.forgerock.oauth.resolvers.service This package contains classes for a service which can be configured to produce OpenID Connect Resolvers.org.forgerock.selfservice.stages.captcha This package contains captcha stage implementation. -
-
Uses of Client in org.forgerock.http.client
Fields in org.forgerock.http.client declared as Client Modifier and Type Field Description protected Client
ChfHttpClient. client
Deprecated.Constructors in org.forgerock.http.client with parameters of type Client Constructor Description ChfHttpClient(Client client)
Deprecated. -
Uses of Client in org.forgerock.json.jose.jwk
Constructors in org.forgerock.json.jose.jwk with parameters of type Client Constructor Description JWKSetParser(Client client)
Alternative constructor allowing the calling class to pass in an already-configuredClient
.JWKSetParser(Client client, JWKLookup jwkLookup)
Alternative constructor allowing the calling class to pass in an already-configuredClient
. -
Uses of Client in org.forgerock.json.jose.jwk.store
Constructors in org.forgerock.json.jose.jwk.store with parameters of type Client Constructor Description JwksStoreService(Client client)
Constructor with a HTTP client, that will be used to connect to the JWKS_URI. -
Uses of Client in org.forgerock.oauth.resolvers
Constructors in org.forgerock.oauth.resolvers with parameters of type Client Constructor Description OpenIdResolverFactory(Client client)
For generating an OpenIDResolverFactory with the supplied client which will be used for all HTTP communication originating form this factory.WellKnownOpenIdConfigurationFactory(Client client)
Deprecated.Use org.forgerock.oauth.resolvers.WellKnownOpenIdConfigurationFactory# WellKnownOpenIdConfigurationFactory(org.forgerock.http.Client, java.time.Clock) insteadWellKnownOpenIdConfigurationFactory(Client client, Clock clock)
Generates a factory that will use the given client when attempting to read the data form a remote location. -
Uses of Client in org.forgerock.oauth.resolvers.service
Constructors in org.forgerock.oauth.resolvers.service with parameters of type Client Constructor Description OpenIdResolverServiceImpl(Client client)
Constructor for the OpenIdResolverServiceImpl which will use the supplied read and connection timeouts when communicating over HTTP.OpenIdResolverServiceImpl(Client client, SecretsProvider secretsProvider, Purpose<DataDecryptionKey> idTokenPurpose)
Constructor for the OpenIdResolverServiceImpl which will use the supplied read and connection timeouts when communicating over HTTP. -
Uses of Client in org.forgerock.selfservice.stages.captcha
Constructors in org.forgerock.selfservice.stages.captcha with parameters of type Client Constructor Description CaptchaStage(Client httpClient)
Constructs a new captcha stage.
-