Uses of Interface
io.undertow.security.api.AuthenticationMechanism
-
Packages that use AuthenticationMechanism Package Description io.undertow io.undertow.security.api io.undertow.security.handlers io.undertow.security.impl io.undertow.util -
-
Uses of AuthenticationMechanism in io.undertow
Methods in io.undertow with parameters of type AuthenticationMechanism Modifier and Type Method Description java.lang.NullPointerExceptionUndertowMessages_$bundle. sendChallengeReturnedNull(AuthenticationMechanism mechanism)java.lang.NullPointerExceptionUndertowMessages. sendChallengeReturnedNull(AuthenticationMechanism mechanism) -
Uses of AuthenticationMechanism in io.undertow.security.api
Methods in io.undertow.security.api that return AuthenticationMechanism Modifier and Type Method Description default AuthenticationMechanismAuthenticationMechanismFactory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)Creates an authentication mechanism that needs access to the deployment IdentityManager and specified propertiesdefault AuthenticationMechanismAuthenticationMechanismFactory. create(java.lang.String mechanismName, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)Deprecated.Methods in io.undertow.security.api that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description java.util.List<AuthenticationMechanism>SecurityContext. getAuthenticationMechanisms()Deprecated, for removal: This API element is subject to removal in a future version.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, for removal: This API element is subject to removal in a future version.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, java.util.List<AuthenticationMechanism> authenticationMechanisms)AuthenticationMechanismsHandler(java.util.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(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)AuthenticationMechanismClientCertAuthenticationMechanism.Factory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)AuthenticationMechanismDigestAuthenticationMechanism.Factory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)AuthenticationMechanismExternalAuthenticationMechanism.Factory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)AuthenticationMechanismGenericHeaderAuthenticationMechanism.Factory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)Methods in io.undertow.security.impl that return types with arguments of type AuthenticationMechanism Modifier and Type Method Description java.util.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.util
Methods in io.undertow.util that return AuthenticationMechanism Modifier and Type Method Description AuthenticationMechanismImmediateAuthenticationMechanismFactory. create(java.lang.String mechanismName, IdentityManager identityManager, FormParserFactory formParserFactory, java.util.Map<java.lang.String,java.lang.String> properties)Constructors in io.undertow.util with parameters of type AuthenticationMechanism Constructor Description ImmediateAuthenticationMechanismFactory(AuthenticationMechanism authenticationMechanism)
-