Uses of Interface
org.apache.catalina.Authenticator
-
Packages that use Authenticator Package Description com.sun.web.security com.sun.web.security.realmadapter org.apache.catalina org.apache.catalina.authenticator This package containsAuthenticatorimplementations for the various supported authentication methods (BASIC, DIGEST, and FORM).org.apache.catalina.core org.apache.catalina.realm This package containsRealmimplementations for the various supported realm technologies for authenticating users and identifying their associated roles.org.apache.catalina.startup -
-
Uses of Authenticator in com.sun.web.security
Methods in com.sun.web.security with parameters of type Authenticator Modifier and Type Method Description booleanRealmAdapter. invokeAuthenticateDelegate(HttpRequest request, HttpResponse response, Context context, Authenticator authenticator, boolean calledFromAuthenticate)Authenticates the user making this request, based on the specified authentication mechanism. -
Uses of Authenticator in com.sun.web.security.realmadapter
Classes in com.sun.web.security.realmadapter that implement Authenticator Modifier and Type Class Description classAuthenticatorProxyMethods in com.sun.web.security.realmadapter with parameters of type Authenticator Modifier and Type Method Description booleanJaspicRealm. validateRequest(HttpRequest request, HttpResponse response, Context context, Authenticator authenticator, boolean calledFromAuthenticate, Function<jakarta.servlet.http.HttpServletRequest,Boolean> isMandatoryFn)Constructors in com.sun.web.security.realmadapter with parameters of type Authenticator Constructor Description AuthenticatorProxy(Authenticator authenticator, Principal principal, String authType) -
Uses of Authenticator in org.apache.catalina
Methods in org.apache.catalina that return Authenticator Modifier and Type Method Description AuthenticatorContext. getAuthenticator()Gets the Authenticator of this Context.Methods in org.apache.catalina with parameters of type Authenticator Modifier and Type Method Description booleanRealm. invokeAuthenticateDelegate(HttpRequest request, HttpResponse response, Context context, Authenticator authenticator, boolean calledFromAuthenticate)Authenticates the user making this request, based on the specified login configuration. -
Uses of Authenticator in org.apache.catalina.authenticator
Classes in org.apache.catalina.authenticator that implement Authenticator Modifier and Type Class Description classAuthenticatorBaseBasic implementation of the Valve interface that enforces the<security-constraint>elements in the web application deployment descriptor.classBasicAuthenticatorAn Authenticator and Valve implementation of HTTP BASIC Authentication, as outlined in RFC 2617: "HTTP Authentication: Basic and Digest Access Authentication."classDigestAuthenticatorAn Authenticator and Valve implementation of HTTP DIGEST Authentication (see RFC 2069).classFormAuthenticatorAn Authenticator and Valve implementation of FORM BASED Authentication, as described in the Servlet API Specification, Version 2.2.classNonLoginAuthenticatorAn Authenticator and Valve implementation that checks only security constraints not involving user authentication.classSSLAuthenticatorAn Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users. -
Uses of Authenticator in org.apache.catalina.core
Methods in org.apache.catalina.core that return Authenticator Modifier and Type Method Description AuthenticatorStandardContext. getAuthenticator()Gets the Authenticator of this Context. -
Uses of Authenticator in org.apache.catalina.realm
Methods in org.apache.catalina.realm with parameters of type Authenticator Modifier and Type Method Description booleanRealmBase. invokeAuthenticateDelegate(HttpRequest request, HttpResponse response, Context context, Authenticator authenticator, boolean calledFromAuthenticate)Authenticates the user making this request, based on the specified login configuration. -
Uses of Authenticator in org.apache.catalina.startup
Fields in org.apache.catalina.startup with type parameters of type Authenticator Modifier and Type Field Description protected HashMap<String,Authenticator>Embedded. authenticatorsCustom mappings of login methods to authenticatorsprotected Map<String,Authenticator>ContextConfig. customAuthenticatorsMethods in org.apache.catalina.startup with parameters of type Authenticator Modifier and Type Method Description voidEmbedded. addAuthenticator(Authenticator authenticator, String loginMethod)Method parameters in org.apache.catalina.startup with type arguments of type Authenticator Modifier and Type Method Description voidContextConfig. setCustomAuthenticators(Map<String,Authenticator> customAuthenticators)Sets custom mappings of login methods to authenticators.
-