-
com.caucho.security.Authenticator
Base implementation to log in a user.
-
com.cloudera.alfredo.client.Authenticator
-
com.hazelcast.client.connection.Authenticator
-
com.liferay.portal.auth.Authenticator
View Source
@author Brian Wing Shun Chan
@version $Revision: 1.7 $
-
com.loja.security.Authenticator
-
com.seomoz.api.authentication.Authenticator
The authentication class which is used to generate the authentication string
@author Radeep Solutions
-
com.sun.net.httpserver.Authenticator
Authenticator represents an implementation of an HTTP authentication mechanism. Sub-classes provide implementations of specific mechanisms such as Digest or Basic auth. Instances are invoked to provide verification of the authentication information provided in all incoming requests. Note. This implies that any caching of credentials or other authentication information must be done outside of this class.
-
de.iritgo.aktera.authentication.Authenticator
-
edu.wpi.cs.wpisuitetng.authentication.Authenticator
Authenticator abstract class. Defines the login function with an abstract parsePost() function. Subclasses implement the decoding of the user credentials in the POST string.
@author twack
-
fitnesse.authentication.Authenticator
-
java.net.Authenticator
The class Authenticator represents an object that knows how to obtain authentication for a network connection. Usually, it will do this by prompting the user for information.
Applications use this class by overriding {@link #getPasswordAuthentication()} in a sub-class. This method willtypically use the various getXXX() accessor methods to get information about the entity requesting authentication. It must then acquire a username and password either by interacting with the user or through some other non-interactive means. The credentials are then returned as a {@link PasswordAuthentication} return value.
An instance of this concrete sub-class is then registered with the system by calling {@link #setDefault(Authenticator)}. When authentication is required, the system will invoke one of the requestPasswordAuthentication() methods which in turn will call the getPasswordAuthentication() method of the registered object.
All methods that request authentication have a default implementation that fails.
@see java.net.Authenticator#setDefault(java.net.Authenticator)
@see java.net.Authenticator#getPasswordAuthentication()
@author Bill Foote
@version 1.33, 11/17/05
@since 1.2
-
javax.mail.Authenticator
@version $Rev: 126350 $ $Date: 2005-01-24 23:35:47 -0700 (Mon, 24 Jan 2005) $
-
jease.cms.service.Authenticator
Default implementation for pluggable user authentication.
-
net.jxta.membership.Authenticator
-
net.sf.pipet.api.Authenticator
-
org.apache.accumulo.server.security.Authenticator
-
org.apache.accumulo.server.security.handler.Authenticator
This interface is used for the system which will be used for authenticating a user. If the implementation does not support configuration through Accumulo, it should throw an AccumuloSecurityException with the error code UNSUPPORTED_OPERATION
-
org.apache.airavata.security.Authenticator
A generic interface to do request authentication. Specific authenticator will implement authenticate method.
-
org.apache.axis2.transport.http.HttpTransportProperties.Authenticator
@version $Rev: 704201 $ $Date: 2008-10-13 14:52:25 -0400 (Mon, 13 Oct 2008) $
-
org.apache.catalina.Authenticator
An Authenticator is a component (usually a Valve or Container) that provides some sort of authentication service. The interface itself has no functional significance, but is used as a tagging mechanism so that other components can detect the presence (via an "instanceof Authenticator" test) of an already configured authentication service.
@author Craig R. McClanahan
@version $Revision: 466595 $ $Date: 2006-10-21 23:24:41 +0100 (Sat, 21 Oct 2006) $
-
org.apache.directory.server.core.authn.Authenticator
Authenticates users who access {@link DefaultPartitionNexus}.
{@link Authenticator}s are registered to and configured by {@link AuthenticationInterceptor} interceptor.
{@link AuthenticationInterceptor} authenticates users by calling{@link #authenticate(DN,ServerContext)}, and then {@link Authenticator}checks JNDI {@link Context} environment properties( {@link Context#SECURITY_PRINCIPAL} and {@link Context#SECURITY_CREDENTIALS}) of current {@link Context}.
@see AbstractAuthenticator
@author Apache Directory Project
@version $Rev: 918766 $
-
org.apache.directory.server.kerberos.shared.messages.components.Authenticator
-
org.apache.directory.shared.kerberos.messages.Authenticator
A structure to hold the authenticator data. It will store the object described by the ASN.1 grammar :
Authenticator ::= [APPLICATION 2] SEQUENCE { authenticator-vno [0] INTEGER (5), crealm [1] Realm, cname [2] , cksum [3] OPTIONAL, cusec [4] Microseconds, ctime [5] KerberosTime, subkey [6] OPTIONAL, seq-number [7] UInt32 OPTIONAL, authorization-data [8] OPTIONAL }
@author
Apache Directory Project
-
org.apache.geronimo.tomcat.security.Authenticator
@version $Rev: 794752 $ $Date: 2009-07-17 01:03:50 +0800 (Fri, 17 Jul 2009) $
-
org.apache.hadoop.security.authentication.client.Authenticator
Interface for client authentication mechanisms.
Implementations are use-once instances, they don't need to be thread safe.
-
org.apache.isis.core.integtestsupport.legacy.Authenticator
-
org.apache.isis.core.runtime.authentication.standard.Authenticator
-
org.apache.isis.viewer.junit.Authenticator
-
org.apache.james.mailbox.store.Authenticator
Authenticates user credentials.
-
org.apache.juddi.auth.Authenticator
@author Steve Viens (sviens@apache.org)
-
org.apache.juddi.v3.auth.Authenticator
Authenticator interface. Any class implementing this interface can be invoked by the AuthenticatorFactory to handle authentication of the user executing a UDDI request. This occurs in two steps: 1) Authenticating the user based the passed credentials 2) Identifying the user by associating either the authorizationKey or user Id with publisher information
@author Steve Viens (sviens@apache.org)
@author
Jeff Faath
-
org.apache.qpid.restapi.httpserver.Authenticator
.oracle.com/thejavatutorials/entry/watching_a_directory_for_changes that allows asynchronous notification of changes, but it's an unnecessary dependency on Java 7 for this application.
@author Fraser Adams
-
org.apache.shiro.authc.Authenticator
An Authenticator is responsible for authenticating accounts in an application. It is one of the primary entry points into the Shiro API.
Although not a requirement, there is usually a single 'master' Authenticator configured for an application. Enabling Pluggable Authentication Module (PAM) behavior (Two Phase Commit, etc.) is usually achieved by the single {@code Authenticator} coordinatingand interacting with an application-configured set of {@link org.apache.shiro.realm.Realm Realm}s.
Note that most Shiro users will not interact with an {@code Authenticator} instance directly.Shiro's default architecture is based on an overall {@code SecurityManager} which typicallywraps an {@code Authenticator} instance.
@author Les Hazlewood
@author Jeremy Haile
@see org.apache.shiro.mgt.SecurityManager
@see AbstractAuthenticator AbstractAuthenticator
@see org.apache.shiro.authc.pam.ModularRealmAuthenticator ModularRealmAuthenticator
@since 0.1
-
org.apache.sling.api.auth.Authenticator
re done here } catch (e) { // probably NoAuthenticationHandler exception } } // Authenticator service is missing or no AuthenticationHandler ... do whatever you want to for error handling ...
Likewise implementing a logout script (ESP, too) is equally simple:
if (request.authType) { // not logged in at all, no need to logout } else { var auth = sling.getService(org.apache.sling.commons.auth.Authenticator); if (auth != null) { auth.logout(request, response); } else { // handle the case of no Authenticator service to logout with } }
This interface is not intended to be implemented by applications but may be used to initiate the authentication process form a request processing servlet or script.
@since 1.0 (Sling API Bundle 2.1.0)
-
org.apache.sling.engine.auth.Authenticator
The
Authenticator
interface defines the service interface of the authenticator used by the Sling engine. This service provides a method to find an {@link AuthenticationHandler} and call its{@link AuthenticationHandler#requestAuthentication(HttpServletRequest,HttpServletResponse)}method.
This interface is not intended to be implemented by applications but may be used to initiate the authentication process form a request processing servlet or script.
@since 2.0.4 This is version of the sling engine module where these classes wherehosted before.
@deprecated use {@link org.apache.sling.auth.core.AuthenticationSupport} instead
-
org.browsermob.proxy.jetty.http.Authenticator
Authenticator Interface. This is the interface that must be implemented to provide authentication implementations to the HttpContext.
-
org.eclipse.jetty.security.Authenticator
Authenticator Interface
An Authenticator is responsible for checking requests and sending response challenges in order to authenticate a request. Various types of {@link Authentication} are returned in order tosignal the next step in authentication.
@version $Rev: 4793 $ $Date: 2009-03-19 00:00:01 +0100 (Thu, 19 Mar 2009) $
-
org.exolab.jms.net.connector.Authenticator
An
Authenticator
authenticates new connections
@author
Tim Anderson
@version $Revision: 1.1 $ $Date: 2004/11/26 01:51:03 $
@see ManagedConnectionAcceptor
-
org.exoplatform.services.security.Authenticator
Created by The eXo Platform SAS
Component responsible for user authentication (session creation) In JAAS LoginModule typically called in login() method
@author Gennady Azarenkov
@LevelAPI Platform
-
org.jboss.com.sun.net.httpserver.Authenticator
Authenticator represents an implementation of an HTTP authentication mechanism. Sub-classes provide implementations of specific mechanisms such as Digest or Basic auth. Instances are invoked to provide verification of the authentication information provided in all incoming requests. Note. This implies that any caching of credentials or other authentication information must be done outside of this class.
-
org.jwall.web.audit.util.Authenticator
This interface defines a simple authentication and group-authorization module. It provides methods to authenticate a user using a simple login and password string. It also allows for checking group-membership of a given username.
@author Christian Bockermann <chris@jwall.org>
-
org.mortbay.http.Authenticator
-
org.mortbay.jetty.security.Authenticator
Authenticator Interface. This is the interface that must be implemented to provide authentication implementations to the HttpContext.
-
org.netbeans.server.uihandler.api.Authenticator
@author Jindrich Sedek
-
org.ofbiz.common.authentication.api.Authenticator
Authenticator Classes which implement this interface (directly) will be auto-discovered and loaded as Authenticators as long as isEnabled() returns true. All implementations MUST be in the org.ofbiz top level package in order to be discovered.
-
org.opencustomer.webapp.auth.Authenticator
-
org.openqa.jetty.http.Authenticator
Authenticator Interface. This is the interface that must be implemented to provide authentication implementations to the HttpContext.
-
org.opensaml.ws.wstrust.Authenticator
The wst:Authenticator element.
@see "WS-Trust 1.3, Chapter 8.9 Authenticating Exchanges."
-
org.platformlayer.auth.Authenticator
-
org.structr.core.auth.Authenticator
An authenticator interface that defines how the system can obtain a principal from a HttpServletRequest.
@author Christian Morgner
@author Axel Morgner
-
org.torquebox.security.auth.Authenticator
-
securesocial.core.authenticator.Authenticator
-
simpleserver.Authenticator
-
tifauv.jplop.core.auth.Authenticator