|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataControlException | |
---|---|
com.nitido.nim | This package contains NiM core classes. |
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 DataControlException in com.nitido.nim |
---|
Methods in com.nitido.nim that throw DataControlException | |
---|---|
protected abstract void |
DataControl.acquire()
This method is used to establish a connection to the back-end data store. |
void |
Entity.addToCredentialSpace(java.lang.String key,
Credential value)
This method adds a new credential to the user space under the given key. |
void |
DataControl.addToCredentialSpace(java.lang.String key,
Credential value)
This method adds a new credential to the user space under the given key. |
void |
Entity.addToUserSpace(java.lang.String key,
java.io.Serializable value)
This method adds a new object to the user space of the entity. |
void |
DataControl.addToUserSpace(java.lang.String key,
java.io.Serializable value)
This method adds a new object to the user space of the entity. |
abstract void |
DataControl.bind(Credential credential)
This method is used to bind the given credential to the DataControl. |
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. |
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). |
java.lang.String[] |
Entity.getCredentialSpaceKeys()
This method returns all the keys currently available in the credential space. |
java.lang.String[] |
DataControl.getCredentialSpaceKeys()
This method returns all the keys currently available in the credential space. |
java.lang.String[] |
Entity.getCredentialSpaceKeys(java.lang.String startsWith)
This method returns all the credential keys currenlty available in the credential space whose value starts with the given prefix. |
java.lang.String[] |
DataControl.getCredentialSpaceKeys(java.lang.String startsWith)
This method returns all the credential keys currenlty available in the credential space whose value starts with the given prefix. |
protected abstract java.lang.String[] |
DataControl.getCredentialSpaceKeysImpl(java.lang.String startsWith)
This method contains the actual implementation for the getCredentialSpaceKeys( startsWith ) method. |
abstract DataControl |
DataControlService.getDataControl(Credential credential)
This method is a factory method for DataControl objects. |
java.util.Vector |
Entity.getFromCredentialSpace(java.lang.String key)
This method returns all the credentials associated with the given key. |
java.util.Vector |
DataControl.getFromCredentialSpace(java.lang.String key)
This method returns all the credentials associated with the given key. |
protected abstract java.util.Vector |
DataControl.getFromCredentialSpaceImpl(java.lang.String key)
This method contains the actual implementation for the getFromCredentialSpace( key ) method. |
java.util.Vector |
Entity.getFromUserSpace(java.lang.String key)
This method returns all the objects associated with the given key. |
java.util.Vector |
DataControl.getFromUserSpace(java.lang.String key)
This method returns all the objects associated with the given key. |
protected abstract java.util.Vector |
DataControl.getFromUserSpaceImpl(java.lang.String key)
This method contains the actual implementation for the getFromUserSpace() method. |
java.lang.String[] |
Entity.getUserSpaceKeys()
This method returns all the keys currently available in the user space. |
java.lang.String[] |
DataControl.getUserSpaceKeys()
This method returns all the keys currently available in the user space. |
java.lang.String[] |
Entity.getUserSpaceKeys(java.lang.String startsWith)
This method returns all the object keys currenlty available in the user space whose value starts with the given prefix. |
java.lang.String[] |
DataControl.getUserSpaceKeys(java.lang.String startsWith)
This method returns all the object keys currenlty available in the user space whose value starts with the given prefix. |
protected abstract java.lang.String[] |
DataControl.getUserSpaceKeysImpl(java.lang.String startsWith)
This method contains the actual implementation for the getUserSpaceKeys() method. |
Credential |
Entity.getValueFromCredentialSpace(java.lang.String key)
This method returns the first instance of the credential object associated to the given key. |
Credential |
DataControl.getValueFromCredentialSpace(java.lang.String key)
This method returns the first instance of the credential object associated to the given key. |
protected abstract Credential |
DataControl.getValueFromCredentialSpaceImpl(java.lang.String key)
This method contains the actual implementation for the getValueFromCredentialSpace( key ) method. |
java.io.Serializable |
Entity.getValueFromUserSpace(java.lang.String key)
This method returns the first instance of the object associated with the given key. |
java.io.Serializable |
DataControl.getValueFromUserSpace(java.lang.String key)
This method returns the first instance of the object associated with the given key. |
protected abstract java.io.Serializable |
DataControl.getValueFromUserSpaceImpl(java.lang.String key)
This method contains the actual implementation for the getValueFromUserSpace() method. |
protected abstract void |
DataControl.initialize(java.util.HashMap settings)
This method is used to initialize the DataControl with the given settings. |
void |
Entity.modifyCredentialSpace(ModifierContainer container)
This method is used to make batch modifications to the credential space of the entity. |
void |
DataControl.modifyCredentialSpace(ModifierContainer container)
This method is used to make batch modifications to the credential space of the entity. |
protected abstract void |
DataControl.modifyCredentialSpaceImpl(ModifierContainer container)
This method provides the actual implementation to the modifyCredentialSpace() method. |
void |
Entity.modifyUserSpace(ModifierContainer container)
This method makes batch modifications to user space of the entity. |
void |
DataControl.modifyUserSpace(ModifierContainer container)
This method makes batch modifications to user space of the entity. |
protected abstract void |
DataControl.modifyUserSpaceImpl(ModifierContainer container)
This method contains the actual implementation for the modifyUserSpace( container ) method. |
protected abstract void |
DataControl.release()
This method is used to release a connection to the back-end data store. |
void |
Entity.removeFromCredentialSpace(java.lang.String key)
This method removes all the credentials that are associated to the given key from the credential space. |
void |
DataControl.removeFromCredentialSpace(java.lang.String key)
This method removes all the credentials that are associated to the given key from the credential space. |
void |
Entity.removeFromCredentialSpace(java.lang.String key,
Credential value)
This method removes the given key/credential pair from the credential space of the entity. |
void |
DataControl.removeFromCredentialSpace(java.lang.String key,
Credential value)
This method removes the given key/credential pair from the credential space of the entity. |
void |
Entity.removeFromUserSpace(java.lang.String key)
This method removes all the objects that are associated to the given key from the user space. |
void |
DataControl.removeFromUserSpace(java.lang.String key)
This method removes all the objects that are associated to the given key from the user space. |
void |
Entity.removeFromUserSpace(java.lang.String key,
java.io.Serializable value)
This method removes the given key/value pair from the user space of the entity. |
void |
DataControl.removeFromUserSpace(java.lang.String key,
java.io.Serializable value)
This method removes the given key/value pair from the user space of the entity. |
void |
Entity.replaceInCredentialSpace(java.lang.String key,
Credential value)
This method is used to store the given credential into the credential space under the given key. |
void |
DataControl.replaceInCredentialSpace(java.lang.String key,
Credential value)
This method is used to store the given credential into the credential space under the given key. |
void |
Entity.replaceInUserSpace(java.lang.String key,
java.io.Serializable value)
This method is used to store the given object into the user space under the given key. |
void |
DataControl.replaceInUserSpace(java.lang.String key,
java.io.Serializable value)
This method is used to store the given object into the user space under the given key. |
Constructors in com.nitido.nim that throw DataControlException | |
---|---|
DataControl(Credential credential,
java.util.HashMap settings)
This constructor returns an instance of the DataControl that is binded to the given credential. |
Uses of DataControlException in com.nitido.nimx.services.datacontrol.cachedmap |
---|
Methods in com.nitido.nimx.services.datacontrol.cachedmap that throw DataControlException | |
---|---|
protected void |
DataControlImpl.acquire()
|
int |
AttrModification.appendAddCommand(java.io.Serializable[] values)
Append a set of values to be added to the target attribute. |
int |
AttrModification.appendModCommand(java.io.Serializable[] values)
Append a set of values to be MODIFY on the target attribute. |
int |
AttrModification.appendRemoveCommand(java.io.Serializable[] values)
Append a set of values to be removed from the target attribute. |
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 Directory |
DataControlServiceImpl.connectRead(java.lang.String dn,
java.lang.String pwd)
|
protected Directory |
DataControlServiceImpl.connectWrite(java.lang.String dn,
java.lang.String pwd)
|
protected void |
DataControlServiceImpl.disconnectRead(Directory dir)
|
protected void |
DataControlServiceImpl.disconnectWrite(Directory dir)
|
protected java.util.Vector |
DataControlServiceImpl.getCacheDataValues(java.lang.String bindDN,
java.lang.String bindPwd,
java.lang.String userDN,
java.lang.String key)
|
protected java.lang.String[] |
DataControlImpl.getCredentialSpaceKeysImpl(java.lang.String startsWith)
|
DataControl |
DataControlServiceImpl.getDataControl(Credential credential)
|
protected java.util.Vector |
DataControlImpl.getFromCredentialSpaceImpl(java.lang.String key)
|
protected java.util.Vector |
DataControlImpl.getFromUserSpaceImpl(java.lang.String key)
|
protected java.lang.String[] |
DataControlImpl.getUserSpaceKeysImpl(java.lang.String startsWith)
|
protected Credential |
DataControlImpl.getValueFromCredentialSpaceImpl(java.lang.String key)
|
protected java.io.Serializable |
DataControlImpl.getValueFromUserSpaceImpl(java.lang.String key)
|
protected void |
DataControlImpl.initialize(java.util.HashMap settingMap)
This method is used to initialize the DataControl with the given settings. |
protected void |
DataControlServiceImpl.modifyBackend(java.lang.String bindDN,
java.lang.String bindPwd,
java.lang.String userDN,
java.util.HashMap backendModifiers,
java.util.HashMap cacheOnlyModifiers)
|
protected void |
DataControlImpl.modifyCredentialSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.modifyUserSpaceImpl(ModifierContainer container)
|
protected void |
DataControlServiceImpl.prefetchAttributes(java.lang.String bindDN,
java.lang.String bindPwd,
java.lang.String userDN)
|
protected void |
DataControlImpl.release()
|
Constructors in com.nitido.nimx.services.datacontrol.cachedmap that throw DataControlException | |
---|---|
DataControlImpl(Credential credential,
java.util.HashMap settingMap)
This constructor returns an instance of the DataControl that is binded to the given credential. |
Uses of DataControlException in com.nitido.nimx.services.datacontrol.profilemap |
---|
Methods in com.nitido.nimx.services.datacontrol.profilemap that throw DataControlException | |
---|---|
protected void |
DataControlImpl.acquire()
|
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 java.lang.String[] |
DataControlImpl.getCredentialSpaceKeysImpl(java.lang.String startsWith)
|
DataControl |
DataControlServiceImpl.getDataControl(Credential credential)
|
protected java.util.Vector |
DataControlImpl.getFromCredentialSpaceImpl(java.lang.String key)
|
protected java.util.Vector |
DataControlImpl.getFromUserSpaceImpl(java.lang.String key)
|
protected java.lang.String[] |
DataControlImpl.getUserSpaceKeysImpl(java.lang.String startsWith)
|
protected Credential |
DataControlImpl.getValueFromCredentialSpaceImpl(java.lang.String key)
|
protected java.io.Serializable |
DataControlImpl.getValueFromUserSpaceImpl(java.lang.String key)
|
protected void |
DataControlImpl.initialize(java.util.HashMap settings)
This method is used to initialize the DataControl with the given settings. |
protected void |
DataControlImpl.modifyCredentialSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.modifyUserSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.release()
|
Constructors in com.nitido.nimx.services.datacontrol.profilemap that throw DataControlException | |
---|---|
DataControlImpl(Credential credential,
java.util.HashMap settings)
This constructor returns an instance of the DataControl that is binded to the given credential. |
Uses of DataControlException in com.nitido.nimx.services.datacontrol.sim |
---|
Methods in com.nitido.nimx.services.datacontrol.sim that throw DataControlException | |
---|---|
protected void |
DataControlImpl.acquire()
|
void |
DataControlImpl.bind(Credential credential)
|
protected void |
DataControlImpl.changeDataControlCredential(Credential newCred,
boolean modBackend)
|
protected java.lang.String[] |
DataControlImpl.getCredentialSpaceKeysImpl(java.lang.String startsWith)
|
DataControl |
DataControlServiceImpl.getDataControl(Credential credential)
|
protected java.util.Vector |
DataControlImpl.getFromCredentialSpaceImpl(java.lang.String key)
|
protected java.util.Vector |
DataControlImpl.getFromUserSpaceImpl(java.lang.String key)
|
protected java.lang.String[] |
DataControlImpl.getUserSpaceKeysImpl(java.lang.String startsWith)
|
protected Credential |
DataControlImpl.getValueFromCredentialSpaceImpl(java.lang.String key)
|
protected java.io.Serializable |
DataControlImpl.getValueFromUserSpaceImpl(java.lang.String key)
|
protected void |
DataControlImpl.initialize(java.util.HashMap settings)
|
protected void |
DataControlImpl.modifyCredentialSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.modifyUserSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.release()
|
Constructors in com.nitido.nimx.services.datacontrol.sim that throw DataControlException | |
---|---|
DataControlImpl(Credential credential,
java.util.HashMap settings)
Default constructor that does nothing. |
Uses of DataControlException in com.nitido.nimx.services.entity.generic |
---|
Methods in com.nitido.nimx.services.entity.generic that throw DataControlException | |
---|---|
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 DataControlException in com.nitido.nimx.services.simbackend |
---|
Methods in com.nitido.nimx.services.simbackend that throw DataControlException | |
---|---|
protected void |
DataControlImpl.acquire()
|
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)
|
protected java.lang.String[] |
DataControlImpl.getCredentialSpaceKeysImpl(java.lang.String startsWith)
|
DataControl |
DataControlServiceImpl.getDataControl(Credential credential)
|
protected java.util.Vector |
DataControlImpl.getFromCredentialSpaceImpl(java.lang.String key)
|
protected java.util.Vector |
DataControlImpl.getFromUserSpaceImpl(java.lang.String key)
|
protected java.lang.String[] |
DataControlImpl.getUserSpaceKeysImpl(java.lang.String startsWith)
|
protected Credential |
DataControlImpl.getValueFromCredentialSpaceImpl(java.lang.String key)
|
protected java.io.Serializable |
DataControlImpl.getValueFromUserSpaceImpl(java.lang.String key)
|
protected void |
DataControlImpl.initialize(java.util.HashMap settings)
This method is used to initialize the DataControl with the given settings. |
protected void |
DataControlImpl.modifyCredentialSpaceImpl(ModifierContainer container)
|
protected void |
BackendStore.modifyUserProfile(Credential cred,
Modifier modifier)
|
protected void |
DataControlImpl.modifyUserSpaceImpl(ModifierContainer container)
|
protected void |
DataControlImpl.release()
|
Constructors in com.nitido.nimx.services.simbackend that throw DataControlException | |
---|---|
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 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1999-2009 Nitido Inc. Proprietary and Confidential. All Rights Reserved.