Uses of Interface
com.netscape.certsrv.authentication.IAuthToken

Packages that use IAuthToken
com.netscape.certsrv.authentication   
com.netscape.certsrv.authorization   
com.netscape.certsrv.evaluators   
com.netscape.certsrv.profile   
com.netscape.certsrv.request   
com.netscape.cms.authentication   
com.netscape.cms.authorization   
com.netscape.cms.evaluators   
com.netscape.cms.policy.extensions   
com.netscape.cms.profile.common   
com.netscape.cms.servlet.admin   
com.netscape.cms.servlet.base   
com.netscape.cms.servlet.cert   
com.netscape.cms.servlet.cert.scep   
com.netscape.cms.servlet.connector   
com.netscape.cms.servlet.processors   
com.netscape.cms.servlet.profile   
 

Uses of IAuthToken in com.netscape.certsrv.authentication
 

Classes in com.netscape.certsrv.authentication that implement IAuthToken
 class AuthToken
          Authentication token returned by Authentication Managers.
 

Methods in com.netscape.certsrv.authentication that return IAuthToken
 IAuthToken IAuthManager.authenticate(IAuthCredentials authCred)
          Authenticate the given credentials.
 IAuthToken IAuthSubsystem.authenticate(IAuthCredentials authCred, java.lang.String authMgrName)
          Authenticate the given credentials using the given manager name.
 

Uses of IAuthToken in com.netscape.certsrv.authorization
 

Methods in com.netscape.certsrv.authorization with parameters of type IAuthToken
 AuthzToken IAuthzManager.authorize(IAuthToken authToken, java.lang.String expression)
           
 AuthzToken IAuthzManager.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          Check if the user is authorized to perform the given operation on the given resource.
 AuthzToken IAuthzSubsystem.authorize(java.lang.String authzMgrName, IAuthToken authToken, java.lang.String exp)
           
 AuthzToken IAuthzSubsystem.authorize(java.lang.String authzMgrName, IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          authorize the user associated with the given authToken for a given operation with the given authorization manager name
 

Uses of IAuthToken in com.netscape.certsrv.evaluators
 

Methods in com.netscape.certsrv.evaluators with parameters of type IAuthToken
 boolean IAccessEvaluator.evaluate(IAuthToken authToken, java.lang.String type, java.lang.String op, java.lang.String value)
          Evaluates if the given value satisfies the access control in authToken obtained from Authentication.
 

Uses of IAuthToken in com.netscape.certsrv.profile
 

Methods in com.netscape.certsrv.profile with parameters of type IAuthToken
 void IProfileAuthenticator.populate(IAuthToken token, IRequest request)
          Populates authentication specific information into the request for auditing purposes.
 void IProfile.submit(IAuthToken token, IRequest request)
          Handles end-user request submission.
 

Uses of IAuthToken in com.netscape.certsrv.request
 

Methods in com.netscape.certsrv.request that return IAuthToken
 IAuthToken IRequest.getExtDataInAuthToken(java.lang.String key)
          Retrieves an authtoken.
 

Methods in com.netscape.certsrv.request with parameters of type IAuthToken
 boolean IRequest.setExtData(java.lang.String key, IAuthToken data)
          Stores an AuthToken the same as a Hashtable.
 

Uses of IAuthToken in com.netscape.cms.authentication
 

Methods in com.netscape.cms.authentication that return IAuthToken
 IAuthToken AgentCertAuthentication.authenticate(IAuthCredentials authCred)
          authenticates user(agent) by certificate
 IAuthToken TokenAuthentication.authenticate(IAuthCredentials authCred)
          authenticates user(agent) by certificate
 IAuthToken CMCAuth.authenticate(IAuthCredentials authCred)
          Authenticates user by their CMC; resulting AuthToken sets a TOKEN_SUBJECT for the subject name.
 IAuthToken FlatFileAuth.authenticate(IAuthCredentials authCred)
          Authenticate the request
 IAuthToken DirBasedAuthentication.authenticate(IAuthCredentials authCred)
          Authenticates user through LDAP by a set of credentials.
 IAuthToken HashAuthentication.authenticate(IAuthCredentials authCreds)
          Authenticates a user based on uid, pwd in the directory.
 IAuthToken SSLclientCertAuthentication.authenticate(IAuthCredentials authCred)
          authenticates user by certificate
 IAuthToken HashAuthentication.getAuthToken(java.lang.String key)
           
protected  IAuthToken CMCAuth.verifySignerInfo(AuthToken authToken, org.mozilla.jss.pkix.cms.SignedData cmcFullReq)
           
 

Methods in com.netscape.cms.authentication with parameters of type IAuthToken
 void HashAuthentication.addAuthToken(java.lang.String pageID, IAuthToken token)
           
 void AgentCertAuthentication.populate(IAuthToken token, IRequest request)
           
 void TokenAuthentication.populate(IAuthToken token, IRequest request)
           
 void CMCAuth.populate(IAuthToken token, IRequest request)
           
 void FlatFileAuth.populate(IAuthToken token, IRequest request)
           
 void UidPwdPinDirAuthentication.populate(IAuthToken token, IRequest request)
           
 void SSLclientCertAuthentication.populate(IAuthToken token, IRequest request)
           
 void UidPwdDirAuthentication.populate(IAuthToken token, IRequest request)
           
 void UserPwdDirAuthentication.populate(IAuthToken token, IRequest request)
           
 

Uses of IAuthToken in com.netscape.cms.authorization
 

Methods in com.netscape.cms.authorization with parameters of type IAuthToken
 AuthzToken BasicAclAuthz.authorize(IAuthToken authToken, java.lang.String expression)
           
 AuthzToken DirAclAuthz.authorize(IAuthToken authToken, java.lang.String expression)
           
 AuthzToken BasicAclAuthz.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          check the authorization permission for the user associated with authToken on operation
abstract  AuthzToken AAclAuthz.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          an abstract class that enforces implementation of the authorize() method that will authorize an operation on a particular resource
 AuthzToken DirAclAuthz.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          check the authorization permission for the user associated with authToken on operation
 void AAclAuthz.checkPermission(IAuthToken authToken, java.lang.String name, java.lang.String perm)
          Checks if the permission is granted or denied with id from authtoken gotten from authentication that precedes authorization.
 boolean AAclAuthz.evaluateACLs(IAuthToken authToken, java.lang.String exp)
           
 

Uses of IAuthToken in com.netscape.cms.evaluators
 

Methods in com.netscape.cms.evaluators with parameters of type IAuthToken
 boolean IPAddressAccessEvaluator.evaluate(IAuthToken authToken, java.lang.String type, java.lang.String op, java.lang.String value)
          Gets the IP address from session context
 boolean UserOrigReqAccessEvaluator.evaluate(IAuthToken authToken, java.lang.String type, java.lang.String op, java.lang.String value)
          Evaluates the user in AuthToken to see if it's equal to value
 boolean GroupAccessEvaluator.evaluate(IAuthToken authToken, java.lang.String type, java.lang.String op, java.lang.String value)
          evaluates uid in AuthToken to see if it has membership in group value
 boolean UserAccessEvaluator.evaluate(IAuthToken authToken, java.lang.String type, java.lang.String op, java.lang.String value)
          Evaluates the user in AuthToken to see if it's equal to value
 

Uses of IAuthToken in com.netscape.cms.policy.extensions
 

Methods in com.netscape.cms.policy.extensions that return IAuthToken
protected  IAuthToken SubjAltNameExt.findAuthToken(IRequest req, java.lang.String authMgrName)
          Deprecated. Find a particular authentication token by manager name.
 

Methods in com.netscape.cms.policy.extensions with parameters of type IAuthToken
protected  void SubjAltNameExt.addValues(IAuthToken tok, java.lang.String attrName, java.util.Vector v)
          Deprecated. Add attribute values from an LDAP attribute to a vector
protected  java.util.Vector SubjAltNameExt.getEmailList(IAuthToken tok)
          Deprecated. Generate a String Vector containing all the email addresses found in this Authentication token
 

Uses of IAuthToken in com.netscape.cms.profile.common
 

Methods in com.netscape.cms.profile.common with parameters of type IAuthToken
 void EnrollProfile.submit(IAuthToken token, IRequest request)
          This method is called after the user submits the request from the end-entity page.
 

Uses of IAuthToken in com.netscape.cms.servlet.admin
 

Methods in com.netscape.cms.servlet.admin with parameters of type IAuthToken
 boolean AdminServlet.authorize(IAuthToken token)
          authorize a user based on its authentication credentials.
 

Uses of IAuthToken in com.netscape.cms.servlet.base
 

Methods in com.netscape.cms.servlet.base that return IAuthToken
 IAuthToken CMSServlet.authenticate(CMSRequest req)
           
 IAuthToken CMSServlet.authenticate(CMSRequest req, java.lang.String authMgrName)
           
 IAuthToken CMSServlet.authenticate(javax.servlet.http.HttpServletRequest httpReq)
           
 IAuthToken CMSServlet.authenticate(javax.servlet.http.HttpServletRequest httpReq, java.lang.String authMgrName)
          Authentication
protected  IAuthToken CMSServlet.getAuthToken(IRequest req)
           
 

Methods in com.netscape.cms.servlet.base with parameters of type IAuthToken
 AuthzToken CMSServlet.authorize(java.lang.String authzMgrName, IAuthToken authToken, java.lang.String exp)
           
 AuthzToken CMSServlet.authorize(java.lang.String authzMgrName, IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          Authorize must occur after Authenticate
protected static void CMSServlet.saveAuthToken(IAuthToken token, IRequest req)
           
 

Uses of IAuthToken in com.netscape.cms.servlet.cert
 

Methods in com.netscape.cms.servlet.cert with parameters of type IAuthToken
protected  void HashEnrollServlet.fillCertInfoFromAuthToken(netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken)
          fill subject name, validity, extensions from authoken if any, overriding what was in pkcs10.
protected  netscape.security.x509.X509CertInfo[] HashEnrollServlet.fillCRMF(java.lang.String crmf, IAuthToken authToken, IArgBlock httpParams, IRequest req)
           
 

Uses of IAuthToken in com.netscape.cms.servlet.cert.scep
 

Methods in com.netscape.cms.servlet.cert.scep that return IAuthToken
 IAuthToken CRSEnrollment.authenticate(AuthCredentials credentials, IProfileAuthenticator authenticator, javax.servlet.http.HttpServletRequest request)
           
 

Uses of IAuthToken in com.netscape.cms.servlet.connector
 

Methods in com.netscape.cms.servlet.connector that return IAuthToken
protected  IAuthToken CloneServlet.authenticate(java.security.cert.X509Certificate peerCert)
           
 

Methods in com.netscape.cms.servlet.connector with parameters of type IAuthToken
protected  IPKIMessage CloneServlet.processRequest(java.lang.String source, java.lang.String sourceUserId, IPKIMessage msg, IAuthToken token)
           
protected  IPKIMessage ConnectorServlet.processRequest(java.lang.String source, java.lang.String sourceUserId, IPKIMessage msg, IAuthToken token)
          Process request
 

Uses of IAuthToken in com.netscape.cms.servlet.processors
 

Methods in com.netscape.cms.servlet.processors with parameters of type IAuthToken
 void PKCS10Processor.fillCertInfo(netscape.security.pkcs.PKCS10 pkcs10, netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken, IArgBlock httpParams)
           
 void PKCS10Processor.fillCertInfo(java.lang.String protocolString, netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken, IArgBlock httpParams)
           
protected  void PKIProcessor.fillCertInfo(java.lang.String protocolString, netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken, IArgBlock httpParams)
           
 void KeyGenProcessor.fillCertInfo(java.lang.String protocolString, netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken, IArgBlock httpParams)
           
 void CMCProcessor.fillCertInfo(java.lang.String protocolString, netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken, IArgBlock httpParams)
           
protected  netscape.security.x509.X509CertInfo[] PKIProcessor.fillCertInfoArray(java.lang.String protocolString, IAuthToken authToken, IArgBlock httpParams, IRequest req)
           
 netscape.security.x509.X509CertInfo[] CRMFProcessor.fillCertInfoArray(java.lang.String protocolString, IAuthToken authToken, IArgBlock httpParams, IRequest req)
           
 netscape.security.x509.X509CertInfo[] CMCProcessor.fillCertInfoArray(java.lang.String protocolString, IAuthToken authToken, IArgBlock httpParams, IRequest req)
           
static void PKIProcessor.fillCertInfoFromAuthToken(netscape.security.x509.X509CertInfo certInfo, IAuthToken authToken)
          fill subject name, validity, extensions from authoken if any, overriding what was in pkcs10.
 netscape.security.x509.X509CertInfo CRMFProcessor.processIndividualRequest(org.mozilla.jss.pkix.crmf.CertReqMsg certReqMsg, IAuthToken authToken, IArgBlock httpParams)
           
 

Uses of IAuthToken in com.netscape.cms.servlet.profile
 

Methods in com.netscape.cms.servlet.profile that return IAuthToken
 IAuthToken ProfileSubmitServlet.authenticate(IProfileAuthenticator authenticator, javax.servlet.http.HttpServletRequest request)
           
 IAuthToken ProfileSubmitCMCServlet.authenticate(IProfileAuthenticator authenticator, javax.servlet.http.HttpServletRequest request)
           
 IAuthToken ProfileSubmitServlet.authenticate(IProfileAuthenticator authenticator, javax.servlet.http.HttpServletRequest request, IRequest origReq, SessionContext context)
           
 

Methods in com.netscape.cms.servlet.profile with parameters of type IAuthToken
 boolean ProfileProcessServlet.grantPermission(IRequest req, IAuthToken token)