Uses of Interface
org.forgerock.http.Handler
Packages that use Handler
Package
Description
This package defines the authentication framework classes for the authentication of messages
via authentication contexts and modules.
Models and manages elements of the Hypertext Transfer Protocol.
Core
Filter
implementations.Support for CORS.
Core
Handler
implementations.This package provides APIs for OAuth 2.0 services implementations.
This package defines OpenAM specific logic needed to retrieve an
AccessTokenInfo
.Provides routing functionality for HTTP requests.
Forgerock Apple Client implementation.
Forgerock Facebook Client Implementation.
Forgerock LinkedIn Client Implementation.
OAuth 2.0 ForgeRock Client Implementation.
OpenID Connect ForgeRock Client Implementation.
A secret store implementation that can retrieve keys from a Google Cloud Platform Key Management Service.
A Secrets API backend that can obtain OAuth 2 access tokens from a token endpoint, along with a collection of
grant type handlers.
Secrets backend that reads secrets from a remote Hashicorp Vault server.
-
Uses of Handler in org.forgerock.caf.authentication.framework
Methods in org.forgerock.caf.authentication.framework with parameters of type Handler -
Uses of Handler in org.forgerock.http
Methods in org.forgerock.http that return HandlerModifier and TypeMethodDescriptionHttpApplication.start()
Gets the rootHandler
that will handle all HTTP requests.Methods in org.forgerock.http with parameters of type HandlerModifier and TypeMethodDescriptionstatic DescribedHttpApplication
Applications.describedHttpApplication
(Handler handler, Factory<Buffer> storage, ApiProducer<io.swagger.models.Swagger> apiProducer) Create a simpleDescribedHttpApplication
that just returns the provided arguments from the appropriate methods.Filters the request and/or response of an exchange.static HttpApplication
Applications.simpleHttpApplication
(Handler handler, Factory<Buffer> storage) Create a simpleHttpApplication
that just returns the provided arguments from the appropriate methods.Constructors in org.forgerock.http with parameters of type HandlerModifierConstructorDescriptionCreates a newClient
which will route HTTP requests to the providedHandler
using aRootContext
allocated during construction when none is provided. -
Uses of Handler in org.forgerock.http.filter
Methods in org.forgerock.http.filter with parameters of type HandlerModifier and TypeMethodDescriptionCsrfFilter.Builder.failureHandler
(Handler failureHandler) Add a handler which will be responsible of creating a response in case of missing/wrong CSRF token.Handles all OPTION requests to CREST resources, all other request methods are handled by theHandler
. -
Uses of Handler in org.forgerock.http.filter.cors
Methods in org.forgerock.http.filter.cors with parameters of type HandlerModifier and TypeMethodDescriptionConstructors in org.forgerock.http.filter.cors with parameters of type HandlerModifierConstructorDescriptionCorsFilter
(CorsPolicyProvider provider, Handler failureHandler) Constructs a new CORS filter using the givenCorsPolicyProvider
andfailureHandler
. -
Uses of Handler in org.forgerock.http.handler
Subinterfaces of Handler in org.forgerock.http.handlerModifier and TypeInterfaceDescriptioninterface
A handler that both handlesRequest
s, and also supports querying for API Descriptors.Classes in org.forgerock.http.handler that implement HandlerModifier and TypeClassDescriptionfinal class
An HTTP client for sending requests to remote servers.Methods in org.forgerock.http.handler that return HandlerModifier and TypeMethodDescriptionstatic Handler
Handlers.forbiddenHandler()
A common HTTP FrameworkHandler
responding 403 Forbidden.static Handler
Handlers.internalServerErrorHandler
(Exception cause) A common HTTP FrameworkHandler
responding 500 Internal Server Error.Methods in org.forgerock.http.handler with parameters of type HandlerModifier and TypeMethodDescriptionstatic DescribableHandler
Handlers.asDescribableHandler
(Handler handler) Adapts aHandler
to aDescribableHandler
without adding support for API Descriptions if it is not already implemented.static DescribableHandler
Creates aHandler
which wraps the provided filters around the provided target handler.static DescribableHandler
Creates aHandler
which wraps the provided filters around the provided target handler.static DescribableHandler
Creates a "filtered handler" instance. -
Uses of Handler in org.forgerock.http.oauth2
Methods in org.forgerock.http.oauth2 with parameters of type HandlerModifier and TypeMethodDescriptionDeprecated. -
Uses of Handler in org.forgerock.http.oauth2.resolver
Constructors in org.forgerock.http.oauth2.resolver with parameters of type HandlerModifierConstructorDescriptionOpenAmAccessTokenResolver
(Handler client, Clock clock, String tokenInfoEndpoint) Deprecated.Creates a newOpenAmAccessTokenResolver
configured to access the given /oauth2/tokeninfo OpenAm endpoint.TokenIntrospectionAccessTokenResolver
(Handler client, URI introspectionEndpointUri) Creates a newTokenIntrospectionAccessTokenResolver
. -
Uses of Handler in org.forgerock.http.routing
Classes in org.forgerock.http.routing that implement HandlerModifier and TypeClassDescriptionfinal class
A router which routes requests based on route matchers.Methods in org.forgerock.http.routing that return types with arguments of type HandlerModifier and TypeMethodDescriptionprotected Pair<RouteMatcher<Request>,
Handler> Router.getSelfApiHandler()
Methods in org.forgerock.http.routing with parameters of type Handler -
Uses of Handler in org.forgerock.oauth.clients.apple
Constructors in org.forgerock.oauth.clients.apple with parameters of type HandlerModifierConstructorDescriptionAppleClient
(Handler httpHandler, AppleClientConfiguration config, Clock clock, SecureRandom random) Constructs aAppleClient
.AppleClient
(Handler httpHandler, AppleClientConfiguration config, Clock clock, SecureRandom random, OpenIdResolverService resolverService, OpenIdResolverServiceConfigurator serviceConfigurator) Constructs aAppleClient
.AppleClient
(Handler httpHandler, OpenIDConnectClientConfiguration config, Clock clock, SecureRandom random, OpenIdResolverService resolverService, OpenIdResolverServiceConfigurator serviceConfigurator) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Handler in org.forgerock.oauth.clients.facebook
Constructors in org.forgerock.oauth.clients.facebook with parameters of type HandlerModifierConstructorDescriptionFacebookClient
(Handler httpHandler, FacebookClientConfiguration config, Clock clock, SecureRandom random) Constructs an FacebookClient using a providedHandler
andFacebookClientConfiguration
. -
Uses of Handler in org.forgerock.oauth.clients.linkedin
Constructors in org.forgerock.oauth.clients.linkedin with parameters of type HandlerModifierConstructorDescriptionLinkedInClient
(Handler httpHandler, LinkedInClientConfiguration config, Clock clock, SecureRandom random) Constructs aLinkedInClient
. -
Uses of Handler in org.forgerock.oauth.clients.oauth2
Fields in org.forgerock.oauth.clients.oauth2 declared as HandlerModifier and TypeFieldDescriptionprotected final Handler
OAuth2Client.httpHandler
Handler
to be used to make http requests.Methods in org.forgerock.oauth.clients.oauth2 that return HandlerModifier and TypeMethodDescriptionprotected Handler
OAuth2Client.getTokenEndpointHandler()
The token endpoint handler which wraps the client authentication filter which is capable of adding the client credentials to the request.Constructors in org.forgerock.oauth.clients.oauth2 with parameters of type HandlerModifierConstructorDescriptionOAuth2Client
(Handler httpHandler, T config, Clock clock, SecureRandom random) Constructs an OAuth2Client using a providedHandler
andOAuthClientConfiguration
. -
Uses of Handler in org.forgerock.oauth.clients.oidc
Constructors in org.forgerock.oauth.clients.oidc with parameters of type HandlerModifierConstructorDescriptionOpenIDConnectClient
(Handler httpHandler, OpenIDConnectClientConfiguration config, Clock clock, SecureRandom random) Constructs an OpenIDConnectClient using a providedHandler
andOpenIDConnectClientConfiguration
.OpenIDConnectClient
(Handler httpHandler, OpenIDConnectClientConfiguration config, Clock clock, SecureRandom random, OpenIdResolverService resolverService, OpenIdResolverServiceConfigurator serviceConfigurator) Constructs an OpenIDConnectClient using a providedHandler
,OpenIDConnectClientConfiguration
,OpenIdResolverService
andOpenIdResolverServiceConfigurator
. -
Uses of Handler in org.forgerock.secrets.gcpkms
Constructors in org.forgerock.secrets.gcpkms with parameters of type HandlerModifierConstructorDescriptionChfHttpTransport
(Handler httpHandler, Supplier<Context> context) Initialises the transport with the given CHF client handler and context supplier. -
Uses of Handler in org.forgerock.secrets.oauth2
Methods in org.forgerock.secrets.oauth2 with parameters of type HandlerModifier and TypeMethodDescriptionAccessTokenSecretStore.Builder.withHandler
(Handler handler) Configures theHandler
to use for sending requests to the token endpoint. -
Uses of Handler in org.forgerock.secrets.vault
Methods in org.forgerock.secrets.vault that return HandlerModifier and TypeMethodDescriptionVaultConfig.getHttpClient()
Returns the CHF HTTP client handler to use for connections to Vault.Methods in org.forgerock.secrets.vault with parameters of type HandlerModifier and TypeMethodDescriptionstatic VaultConfig.Builder
Returns a newVaultConfig.Builder
to construct the configuration.
AppleClient(Handler, AppleClientConfiguration, Clock, SecureRandom, OpenIdResolverService, OpenIdResolverServiceConfigurator)
instead.