Nitido Inc.

Uses of Class
com.nitido.nim.IllegalCredentialException

Packages that use IllegalCredentialException
com.nitido.nim This package contains NiM core classes. 
com.nitido.nimx.services.authentication.directory The implementation of AuthenticationService that uses the JNDI implementation of Nitido Eximius Directory library. 
com.nitido.nimx.services.authentication.dirpool The implementation of AuthenticationService that uses the Mozilla Netscape LDAP SDK's connection pool ability. 
com.nitido.nimx.services.authentication.sim A simulator implementation of AuthenticationService. 
com.nitido.nimx.services.datacontrol.cachedmap A directory-based implementation of DataControlService that support profile caching and directory pool. 
com.nitido.nimx.services.datacontrol.profilemap A directory-based implementation of DataControlService that allow custom mapping between the user space key and the backend LDAP attribute name. 
com.nitido.nimx.services.datacontrol.sim A simulator implementation of DataControlService. 
com.nitido.nimx.services.entity.generic A generic implementation of EntityService implementation. 
com.nitido.nimx.services.simbackend This package contains classes used to simulate a backend data store. 
 

Uses of IllegalCredentialException in com.nitido.nim
 

Methods in com.nitido.nim that throw IllegalCredentialException
 Credential AuthenticationService.authenticate(Credential cred)
          This method forwards the call to authenticateImpl() method and then sets the authenticated flag of the credential to true.
protected abstract  Credential AuthenticationService.authenticateImpl(Credential cred)
          This method is used to authenticate the given credential against the back-end authentication service.
abstract  void DataControl.bind(Credential credential)
          This method is used to bind the given credential to the DataControl.
abstract  void AuthenticationService.changeAuthenticationCredential(Credential oldCred, Credential newCred)
          This method is used to change the identifying credentials on an entity.
protected  void Entity.changeDataControlCredential(Credential newDCCred, boolean modBackend)
          Redirector that invokes the DataControl.changeDataControlCredential().
protected abstract  void DataControl.changeDataControlCredential(Credential newCred, boolean modBackend)
          This method changes and rebinds the "login" credential of the DataControl.
protected  void EntityService.changeDataControlCredential(Entity entity, Credential newDCCred, boolean modBackend)
          This is a redirector method to entity's changeDataControlCredential method.
abstract  void EntitlementService.changeEntitlementCredential(Credential oldCred, Credential newCred)
          This method is used to change the user credentials to the entitlement service.
 void Entity.changeIdentifyingCredential(Credential newCred)
          This method is used to replace the identifying credentials associated with the entity.
abstract  void EntityService.changeIdentifyingCredential(Entity entity, Credential newCred)
          This method is used to change the identifying credential of an entity (this is usually called for changing the user's password).
abstract  void ProvisionService.changeProvisionCredential(Credential oldCred, Credential newCred)
          Change the provision credential.
abstract  DataControl DataControlService.getDataControl(Credential credential)
          This method is a factory method for DataControl objects.
 Entity NiM.getEntity(Credential credential)
          This method returns an instance of an Entity for the given credential.
abstract  Entity EntityService.getEntity(Credential credential)
          This method returns an instance of an Entity associated to the given credential.
 

Constructors in com.nitido.nim that throw IllegalCredentialException
DataControl(Credential credential, java.util.HashMap settings)
          This constructor returns an instance of the DataControl that is binded to the given credential.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.authentication.directory
 

Methods in com.nitido.nimx.services.authentication.directory that throw IllegalCredentialException
protected  Credential AuthenticationServiceImpl.authenticateImpl(Credential cred)
          This method is used to authenticate the given credential against a directory server.
 void AuthenticationServiceImpl.changeAuthenticationCredential(Credential oldCred, Credential newCred)
           
 

Uses of IllegalCredentialException in com.nitido.nimx.services.authentication.dirpool
 

Methods in com.nitido.nimx.services.authentication.dirpool that throw IllegalCredentialException
protected  Credential AuthenticationServiceImpl.authenticateImpl(Credential cred)
          This method is used to authenticate the given credential against a directory server.
 void AuthenticationServiceImpl.changeAuthenticationCredential(Credential oldCred, Credential newCred)
           
protected  void AuthenticationServiceImpl.postAuthenticate(Directory dir, Credential inCred, java.lang.String dn)
          This method performs additional check on an entry's user profile after binding to the backend LDAP server with the credential sucessfully.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.authentication.sim
 

Methods in com.nitido.nimx.services.authentication.sim that throw IllegalCredentialException
protected  Credential AuthenticationServiceImpl.authenticateImpl(Credential credential)
          This method is used to authenticate the given credential against the back-end authentication service.
 void AuthenticationServiceImpl.changeAuthenticationCredential(Credential oldCred, Credential newCred)
          This method is used to change the identifying credentials on an entity.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.datacontrol.cachedmap
 

Methods in com.nitido.nimx.services.datacontrol.cachedmap that throw IllegalCredentialException
 void DataControlImpl.bind(Credential cred)
          This method is used to bind the given credential to the DataControl if the credential can be authenticated against the directory server.
protected  void DataControlImpl.changeDataControlCredential(Credential newCred, boolean modBackend)
          This method change the DataControl credential for user.
protected  com.nitido.nimx.services.datacontrol.cachedmap.BindData DataControlServiceImpl.credentialToBindData(Credential cred)
          This method is invoked by the DataControl object to obtain the DN for the specified credential.
protected  java.lang.String DataControlServiceImpl.credentialToUserDN(Credential cred)
          This method is invoked by the DataControl object to obtain the DN for the specified credential.
 DataControl DataControlServiceImpl.getDataControl(Credential credential)
           
 

Constructors in com.nitido.nimx.services.datacontrol.cachedmap that throw IllegalCredentialException
DataControlImpl(Credential credential, java.util.HashMap settingMap)
          This constructor returns an instance of the DataControl that is binded to the given credential.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.datacontrol.profilemap
 

Methods in com.nitido.nimx.services.datacontrol.profilemap that throw IllegalCredentialException
 void DataControlImpl.bind(Credential cred)
          This method is used to bind the given credential to the DataControl if the credential can be authenticated against the directory server.
protected  void DataControlImpl.changeDataControlCredential(Credential newCred, boolean modBackend)
          This method change the DataControl credential for user.
protected  com.nitido.nimx.services.datacontrol.profilemap.BindData DataControlServiceImpl.credentialToBindData(Credential cred)
           
protected  java.lang.String DataControlServiceImpl.credentialToUserDN(Credential cred)
          This method is invoked by the DataControl object to obtain the DN for the specified credential.
 DataControl DataControlServiceImpl.getDataControl(Credential credential)
           
 

Constructors in com.nitido.nimx.services.datacontrol.profilemap that throw IllegalCredentialException
DataControlImpl(Credential credential, java.util.HashMap settings)
          This constructor returns an instance of the DataControl that is binded to the given credential.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.datacontrol.sim
 

Methods in com.nitido.nimx.services.datacontrol.sim that throw IllegalCredentialException
 void DataControlImpl.bind(Credential credential)
           
protected  void DataControlImpl.changeDataControlCredential(Credential newCred, boolean modBackend)
           
 DataControl DataControlServiceImpl.getDataControl(Credential credential)
           
 

Constructors in com.nitido.nimx.services.datacontrol.sim that throw IllegalCredentialException
DataControlImpl(Credential credential, java.util.HashMap settings)
          Default constructor that does nothing.
 

Uses of IllegalCredentialException in com.nitido.nimx.services.entity.generic
 

Methods in com.nitido.nimx.services.entity.generic that throw IllegalCredentialException
 void EntityServiceImpl.changeIdentifyingCredential(Entity entity, Credential newCred)
          This method is used to change the identifying credential of an entity (this is usually called when changing the user's password).
 

Uses of IllegalCredentialException in com.nitido.nimx.services.simbackend
 

Methods in com.nitido.nimx.services.simbackend that throw IllegalCredentialException
 Credential AuthenticationServiceImpl.authenticateImpl(Credential credential)
          This method is used to authenticate the given credential against the back-end authentication service.
 void DataControlImpl.bind(Credential cred)
          This method is used to bind the given credential to the DataControl if the credential can be authenticated against the directory server.
protected  void BackendStore.bind(Credential cred)
           
 void AuthenticationServiceImpl.changeAuthenticationCredential(Credential oldCred, Credential newCred)
          This method is used to change the identifying credentials on an entity.
protected  void BackendStore.changeCredential(Credential oldCred, Credential newCred)
           
protected  void DataControlImpl.changeDataControlCredential(Credential newCred, boolean modBackend)
           
 void ProvisionServiceImpl.changeProvisionCredential(Credential oldCred, Credential newCred)
           
 DataControl DataControlServiceImpl.getDataControl(Credential credential)
           
 

Constructors in com.nitido.nimx.services.simbackend that throw IllegalCredentialException
DataControlImpl(Credential credential, java.util.HashMap settings)
          This constructor returns an instance of the DataControl that is binded to the given credential.
 


Nitido NiM 2.5 Java API

These JavaDoc pages are generated for release/nim_2_5-2.5.44

Copyright © 1999-2009 Nitido Inc.    Proprietary and Confidential.    All Rights Reserved.