Package org.wildfly.security.http
Class HttpAuthenticator.Builder
java.lang.Object
org.wildfly.security.http.HttpAuthenticator.Builder
- Enclosing class:
- HttpAuthenticator
A
Builder to configure and create an instance of HttpAuthenticator.-
Method Summary
Modifier and TypeMethodDescriptionbuild()Build the newHttpAuthenticatorinstance.registerLogoutHandler(Consumer<Runnable> logoutHandlerConsumer) setHttpExchangeSpi(HttpExchangeSpi httpExchangeSpi) Set theHttpExchangeSpiinstance for the current request to allow integration with the Elytron APIs.setIdentityCacheSupplier(Supplier<IdentityCache> identityCacheSupplier) Set aSupplierwhich acts as a factory to return a newIdentityCacheinstance for the current request, this allows alternative caching strategies to be provided.setIgnoreOptionalFailures(boolean ignoreOptionalFailures) Where authentication is not required but is still attempted a failure of an authentication mechanism will cause the challenges to be sent and the current request returned to the client, setting this value to true will allow the failure to be ignored.setMechanismSupplier(Supplier<List<HttpServerAuthenticationMechanism>> mechanismSupplier) Set the supplier to use to obtain list ofHttpServerAuthenticationMechanismimplementations instances to use, based on the configured policy.setProgrammaticMechanismName(String programmaticMechanismName) Set the mechanism name that should be used for programmatic authentication if one is not provided at the time of the call.setRequired(boolean required) Sets if authentication is required for the current request, if not required mechanisms will be called to be given the opportunity to authenticatesetSecurityDomain(SecurityDomain securityDomain) Set theSecurityDomainto use for programmatic authentication.
-
Method Details
-
setMechanismSupplier
public HttpAuthenticator.Builder setMechanismSupplier(Supplier<List<HttpServerAuthenticationMechanism>> mechanismSupplier) Set the supplier to use to obtain list ofHttpServerAuthenticationMechanismimplementations instances to use, based on the configured policy.- Parameters:
mechanismSupplier- theSupplierwith the configured authentication policy- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setSecurityDomain
Set theSecurityDomainto use for programmatic authentication.- Parameters:
securityDomain- theSecurityDomainto use for programmatic authentication.- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setHttpExchangeSpi
Set theHttpExchangeSpiinstance for the current request to allow integration with the Elytron APIs.- Parameters:
httpExchangeSpi- theHttpExchangeSpiinstance for the current request- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setRequired
Sets if authentication is required for the current request, if not required mechanisms will be called to be given the opportunity to authenticate- Parameters:
required- is authentication required for the current request?- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setIgnoreOptionalFailures
Where authentication is not required but is still attempted a failure of an authentication mechanism will cause the challenges to be sent and the current request returned to the client, setting this value to true will allow the failure to be ignored. This setting has no effect when required is set totrue, in that case all failures will result in a client- Parameters:
ignoreOptionalFailures- should mechanism failures be ignored if authentication is optional.- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
registerLogoutHandler
A
Consumerresponsible for registering aRunnableemitted by one of the mechanisms during the evaluation of a request and representing some action to be taken during logout.This method is mainly targeted for programmatic logout where logout requests are send by the application after the authentication. Although, integration code is free to register the logout handler whatever they want in order to support different logout scenarios.
- Parameters:
logoutHandlerConsumer- the consumer responsible for registering the logout handler (notnull)- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setProgrammaticMechanismName
Set the mechanism name that should be used for programmatic authentication if one is not provided at the time of the call.- Parameters:
programmaticMechanismName- the name of the mechanism to use for programmatic authentication.- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
setIdentityCacheSupplier
public HttpAuthenticator.Builder setIdentityCacheSupplier(Supplier<IdentityCache> identityCacheSupplier) Set aSupplierwhich acts as a factory to return a newIdentityCacheinstance for the current request, this allows alternative caching strategies to be provided.- Parameters:
identityCacheSupplier- - a factory which returns newIdentityCacheinstances for the current request.- Returns:
- the
HttpAuthenticator.Builderto allow method call chaining.
-
build
Build the newHttpAuthenticatorinstance.- Returns:
- the new
HttpAuthenticatorinstance.
-