| Home >> All >> org >> apache >> catalina >> [ authenticator Javadoc ] |
org.apache.catalina.authenticator: Javadoc index of package org.apache.catalina.authenticator.
Package Samples:
org.apache.catalina.authenticator
Classes:
SingleSignOn: A Valve that supports a "single sign on" user experience, where the security identity of a user who successfully authenticates to one web application is propogated to other web applications in the same security domain. For successful use, the following requirements must be met: This Valve must be configured on the Container that represents a virtual host (typically an implementation of Host ). The Realm that contains the shared user and role information must be configured on the same Container (or a higher one), and not overridden at the web application level. The web applications themselves must ...
AuthenticatorBase: Basic implementation of the Valve interface that enforces the <security-constraint> elements in the web application deployment descriptor. This functionality is implemented as a Valve so that it can be ommitted in environments that do not require these features. Individual implementations of each supported authentication method can subclass this base class as required. USAGE CONSTRAINT : When this class is utilized, the Context to which it is attached (or a parent Container in a hierarchy) must have an associated Realm that can be used for authenticating users and enumerating the roles to ...
SavedRequest: Object that saves the critical information from a request so that form-based authentication can reproduce it once the user has been authenticated. IMPLEMENTATION NOTE - It is assumed that this object is accessed only from the context of a single thread, so no synchronization around internal collection classes is performed.
SingleSignOnEntry: A class that represents entries in the cache of authenticated users. This is necessary to make it available to AuthenticatorBase subclasses that need it in order to perform reauthentications when SingleSignOn is in use.
BasicAuthenticator: An Authenticator and Valve implementation of HTTP BASIC Authentication, as outlined in RFC 2617: "HTTP Authentication: Basic and Digest Access Authentication."
FormAuthenticator: An Authenticator and Valve implementation of FORM BASED Authentication, as described in the Servlet API Specification, Version 2.2.
SSLAuthenticator: An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users.
NonLoginAuthenticator: An Authenticator and Valve implementation that checks only security constraints not involving user authentication.
DigestAuthenticator: An Authenticator and Valve implementation of HTTP DIGEST Authentication (see RFC 2069).
Constants
| Home | Contact Us | Privacy Policy | Terms of Service |