Uses of Interface
io.undertow.security.api.AuthenticationMechanism
-
-
Uses of AuthenticationMechanism in io.undertow.security.api
Methods in io.undertow.security.api that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismAuthenticationMechanismFactory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)Creates an authentication mechanism using the specified propertiesMethods in io.undertow.security.api that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description List<AuthenticationMechanism>SecurityContext. getAuthenticationMechanisms()Deprecated.Obtaining lists of mechanisms is discouraged, however there should not be a need to call this anyway.Methods in io.undertow.security.api with parameters of type AuthenticationMechanism Modifier and Type Method Description voidAuthenticationMechanismContext. addAuthenticationMechanism(AuthenticationMechanism mechanism)Adds an authentication mechanism to this context.voidSecurityContext. addAuthenticationMechanism(AuthenticationMechanism mechanism)Deprecated.This method is now only applicable toSecurityContextimplementations that also implement theAuthenticationMechanismContextinterface. -
Uses of AuthenticationMechanism in io.undertow.security.handlers
Constructor parameters in io.undertow.security.handlers with type arguments of type AuthenticationMechanism Constructor Description AuthenticationMechanismsHandler(HttpHandler next, List<AuthenticationMechanism> authenticationMechanisms)AuthenticationMechanismsHandler(List<AuthenticationMechanism> authenticationHandlers) -
Uses of AuthenticationMechanism in io.undertow.security.impl
Classes in io.undertow.security.impl that implement AuthenticationMechanism Modifier and Type Class Description classBasicAuthenticationMechanismThe authentication handler responsible for BASIC authentication as described by RFC2617classCachedAuthenticatedSessionMechanismAnAuthenticationMechanismwhich uses any cachedAuthenticatedSessionManager.AuthenticatedSessions.classClientCertAuthenticationMechanismThe Client Cert based authentication mechanism.classDigestAuthenticationMechanismHttpHandlerto handle HTTP Digest authentication, both according to RFC-2617 and draft update to allow additional algorithms to be used.classExternalAuthenticationMechanismAuthentication mechanism that uses an externally provided principal.classFormAuthenticationMechanismclassGenericHeaderAuthenticationMechanismA authentication mechanism that requires the presence of two headers in the request.classGSSAPIAuthenticationMechanismAuthenticationMechanismfor GSSAPI / SPNEGO based authentication.classSingleSignOnAuthenticationMechanismAuthenticator that can be used to configure single sign on.Methods in io.undertow.security.impl that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismBasicAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)AuthenticationMechanismClientCertAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)AuthenticationMechanismDigestAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)AuthenticationMechanismExternalAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)AuthenticationMechanismGenericHeaderAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)Methods in io.undertow.security.impl that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description List<AuthenticationMechanism>SecurityContextImpl. getAuthenticationMechanisms()Deprecated.Methods in io.undertow.security.impl with parameters of type AuthenticationMechanism Modifier and Type Method Description voidSecurityContextImpl. addAuthenticationMechanism(AuthenticationMechanism handler) -
Uses of AuthenticationMechanism in io.undertow.servlet.api
Methods in io.undertow.servlet.api that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismDeploymentInfo. getJaspiAuthenticationMechanism()Methods in io.undertow.servlet.api that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description List<AuthenticationMechanism>Deployment. getAuthenticationMechanisms()Methods in io.undertow.servlet.api with parameters of type AuthenticationMechanism Modifier and Type Method Description DeploymentInfoDeploymentInfo. addFirstAuthenticationMechanism(String name, AuthenticationMechanism mechanism)Adds an authentication mechanism directly to the deployment.DeploymentInfoDeploymentInfo. addLastAuthenticationMechanism(String name, AuthenticationMechanism mechanism)Adds an authentication mechanism directly to the deployment.DeploymentInfoDeploymentInfo. setJaspiAuthenticationMechanism(AuthenticationMechanism jaspiAuthenticationMechanism) -
Uses of AuthenticationMechanism in io.undertow.servlet.core
Methods in io.undertow.servlet.core that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description List<AuthenticationMechanism>DeploymentImpl. getAuthenticationMechanisms()Method parameters in io.undertow.servlet.core with type arguments of type AuthenticationMechanism Modifier and Type Method Description voidDeploymentImpl. setAuthenticationMechanisms(List<AuthenticationMechanism> authenticationMechanisms) -
Uses of AuthenticationMechanism in io.undertow.servlet.handlers.security
Classes in io.undertow.servlet.handlers.security that implement AuthenticationMechanism Modifier and Type Class Description classServletFormAuthenticationMechanismServlet handler for FORM authentication.classServletSingleSignOnAuthenticationMechainismDeprecated.classServletSingleSignOnAuthenticationMechanismServlet version of the single sign on authentication mechanism.Methods in io.undertow.servlet.handlers.security that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismServletFormAuthenticationMechanism.Factory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties) -
Uses of AuthenticationMechanism in io.undertow.util
Methods in io.undertow.util that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismImmediateAuthenticationMechanismFactory. create(String mechanismName, FormParserFactory formParserFactory, Map<String,String> properties)Constructors in io.undertow.util with parameters of type AuthenticationMechanism Constructor Description ImmediateAuthenticationMechanismFactory(AuthenticationMechanism authenticationMechanism)
-