Uses of Interface
org.dogtagpki.server.authentication.IAuthManager
-
-
Uses of IAuthManager in com.netscape.cms.authentication
Classes in com.netscape.cms.authentication that implement IAuthManager Modifier and Type Class Description class
AgentCertAuthentication
Certificate server agent authentication.class
CMCAuth
UID/CMC authentication plug-inclass
CMCUserSignedAuth
User Signed CMC authentication plug-in note: - this version differs from CMCAuth in that it allows non-agent users to sign own cmc requests; It is expected to be used with CMCUserSignedSubjectNameDefault and CMCUserSignedSubjectNameConstraint so that the resulting cert will bear the same subjectDN of that of the CMC signing cert - it originates from CMCAuth with modification for user-signed cmcclass
DirBasedAuthentication
Abstract class for directory based authentication managers Uses a pattern for formulating subject names.class
FlatFileAuth
This represents the authentication manager that authenticates user against a file where id, and password are stored.class
HashAuthentication
Hash uid/pwd directory based authentication managerclass
PortalEnroll
uid/pwd directory based authentication managerclass
SessionAuthentication
Pull any existing auth token from the session context.class
SharedSecret
SharedSecret provides methods to retrieve shared secrets between users and the server.class
SSLclientCertAuthentication
Certificate server SSL client authentication.class
TokenAuthentication
Token authentication.class
UidPwdDirAuthentication
uid/pwd directory based authentication managerclass
UidPwdPinDirAuthentication
uid/pwd/pin directory based authentication managerclass
UserPwdDirAuthentication
uid/pwd directory based authentication manager -
Uses of IAuthManager in com.netscape.cms.profile
Subinterfaces of IAuthManager in com.netscape.cms.profile Modifier and Type Interface Description interface
IProfileAuthenticator
This interface represents an authenticator for profile. -
Uses of IAuthManager in com.netscape.cms.servlet.admin
Methods in com.netscape.cms.servlet.admin with parameters of type IAuthManager Modifier and Type Method Description static AuthCredentials
AdminServlet. getAuthCreds(IAuthManager authMgr, java.security.cert.X509Certificate clientCert)
-
Uses of IAuthManager in com.netscape.cms.servlet.base
Methods in com.netscape.cms.servlet.base with parameters of type IAuthManager Modifier and Type Method Description static AuthCredentials
CMSServlet. getAuthCreds(IAuthManager authMgr, IArgBlock argBlock, java.security.cert.X509Certificate clientCert)
construct a authentication credentials to pass into authentication manager. -
Uses of IAuthManager in com.netscape.cms.servlet.common
Methods in com.netscape.cms.servlet.common with parameters of type IAuthManager Modifier and Type Method Description static AuthCredentials
CMSGateway. getAuthCreds(IAuthManager authMgr, IArgBlock argBlock, java.security.cert.X509Certificate clientCert)
construct a authentication credentials to pass into authentication manager. -
Uses of IAuthManager in com.netscape.cmscore.authentication
Classes in com.netscape.cmscore.authentication that implement IAuthManager Modifier and Type Class Description class
CertUserDBAuthentication
Certificate server agent authentication.class
ChallengePhraseAuthentication
Challenge phrase based authentication.class
NullAuthentication
This authentication does nothing but just returns an empty authToken.class
PasswdUserDBAuthentication
Certificate Server admin authentication.class
SSLClientCertAuthentication
SSL client based authentication.Methods in com.netscape.cmscore.authentication that return IAuthManager Modifier and Type Method Description IAuthManager
AuthSubsystem. get(java.lang.String name)
Gets the authentication manager instance of the specified name.IAuthManager
AuthSubsystem. getAuthManager(java.lang.String name)
gets the named authentication managerIAuthManager
AuthSubsystem. getAuthManagerPlugin(java.lang.String name)
Retrieve a single auth manager instanceMethods in com.netscape.cmscore.authentication that return types with arguments of type IAuthManager Modifier and Type Method Description java.util.Enumeration<IAuthManager>
AuthSubsystem. getAuthManagers()
Enumerate all authentication manager instances.Methods in com.netscape.cmscore.authentication with parameters of type IAuthManager Modifier and Type Method Description void
AuthSubsystem. add(java.lang.String name, IAuthManager authMgrInst)
Add an authentication manager instance. -
Uses of IAuthManager in org.dogtagpki.server.authentication
Methods in org.dogtagpki.server.authentication that return IAuthManager Modifier and Type Method Description IAuthManager
IAuthSubsystem. get(java.lang.String name)
Get an authentication manager interface for the given name.IAuthManager
AuthManagerProxy. getAuthManager()
Returns an authentication manager instance.IAuthManager
IAuthSubsystem. getAuthManager(java.lang.String name)
Gets the Authentication manager instance of the specified name.IAuthManager
IAuthSubsystem. getAuthManagerPlugin(java.lang.String name)
Gets a single authentication manager plugin implementationMethods in org.dogtagpki.server.authentication that return types with arguments of type IAuthManager Modifier and Type Method Description java.util.Enumeration<IAuthManager>
IAuthSubsystem. getAuthManagers()
Gets an enumeration of authentication managers registered to the authentication subsystem.Methods in org.dogtagpki.server.authentication with parameters of type IAuthManager Modifier and Type Method Description void
IAuthSubsystem. add(java.lang.String name, IAuthManager authMgr)
Adds (registers) the given authentication manager.Constructors in org.dogtagpki.server.authentication with parameters of type IAuthManager Constructor Description AuthManagerProxy(boolean enable, IAuthManager mgr)
ConstructorAuthToken(IAuthManager authMgr)
Constructs an instance of a authentication token.
-