|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.crowd.directory.SpringLDAPConnector
public abstract class SpringLDAPConnector
| Field Summary | |
|---|---|
protected AttributeValuesHolder |
attributes
|
protected org.springframework.ldap.core.ContextSource |
contextSource
|
protected org.springframework.ldap.transaction.compensating.manager.ContextSourceTransactionManager |
contextSourceTransactionManager
|
static int |
DEFAULT_PAGE_SIZE
|
protected com.atlassian.event.api.EventPublisher |
eventPublisher
|
protected LDAPPropertiesMapper |
ldapPropertiesMapper
|
protected LDAPQueryTranslater |
ldapQueryTranslater
|
protected org.springframework.ldap.core.LdapTemplate |
ldapTemplate
|
protected Converter |
nameConverter
|
protected SearchDN |
searchDN
|
| Constructor Summary | |
|---|---|
SpringLDAPConnector(LDAPQueryTranslater ldapQueryTranslater,
com.atlassian.event.api.EventPublisher eventPublisher,
InstanceFactory instanceFactory)
|
|
| Method Summary | ||
|---|---|---|
protected void |
addDefaultSnToUserAttributes(javax.naming.directory.Attributes attrs,
java.lang.String defaultSnValue)
A default install of many directory servers (inc. |
|
protected void |
addDefaultValueToUserAttributesForAttribute(java.lang.String attributeName,
javax.naming.directory.Attributes attrs,
java.lang.String defaultValue)
|
|
Group |
addGroup(GroupTemplate group)
Adds a group to the directory store. |
|
LDAPUserWithAttributes |
addUser(UserTemplate user,
PasswordCredential credential)
Adds a user to LDAP. |
|
protected javax.naming.ldap.LdapName |
asLdapGroupName(java.lang.String dn,
java.lang.String groupName)
Convenience method to convert group DN to LdapName, throwing a GNFE with the supplied group name if unable to construct the LdapName. |
|
protected
|
asLdapName(java.lang.String dn,
java.lang.String entityName,
java.lang.Class<T> entityClass)
This method is required to wrap DN's into LdapNames as spring-ldap doesn't correctly handle operations with String dn arguments. |
|
protected javax.naming.ldap.LdapName |
asLdapUserName(java.lang.String dn,
java.lang.String userName)
Convenience method to convert user DN to LdapName, throwing a GNFE with the supplied user name if unable to construct the LdapName. |
|
User |
authenticate(java.lang.String name,
PasswordCredential credential)
Authenticates a user with the directory store. |
|
protected abstract java.lang.Object |
encodePassword(java.lang.String unencodedPassword)
Given an plain-text password, encodes/encrypts it according to the settings required by the particular directory connector. |
|
|
findEntityByDN(java.lang.String dn,
java.lang.Class<T> entityClass)
Finds a directory entity (principal, group or role) by their distinguished name. |
|
protected
|
findEntityByDN(java.lang.String dn,
java.lang.String baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
java.lang.Class<T> entityClass)
|
|
LDAPGroupWithAttributes |
findGroupByName(java.lang.String name)
Finds the group that matches the supplied name. |
|
protected LDAPGroupWithAttributes |
findGroupByNameAndType(java.lang.String name,
GroupType groupType)
|
|
LDAPGroupWithAttributes |
findGroupWithAttributesByName(java.lang.String name)
Finds the group that matches the supplied name. |
|
LDAPUserWithAttributes |
findUserByName(java.lang.String name)
Finds the user that matches the supplied name. |
|
LDAPUserWithAttributes |
findUserWithAttributesByName(java.lang.String name)
Finds the user that matches the supplied name. |
|
boolean |
getAttributeAsBoolean(java.lang.String name,
boolean defaultValue)
|
|
long |
getAttributeAsLong(java.lang.String name,
long defaultValue)
|
|
protected java.util.Map<java.lang.String,java.lang.String> |
getBaseEnvironmentProperties()
Returns the properties used to set up the Ldap ContextSource. |
|
org.springframework.ldap.core.ContextSource |
getContextSource()
Exposed so that delegated directories can get a handle on the underlying LDAP context. |
|
protected java.util.List<AttributeMapper> |
getCustomGroupAttributeMappers()
As a minimum, this SHOULD provide an attribute mapper that maps the group members attribute (if available). |
|
protected java.util.List<AttributeMapper> |
getCustomUserAttributeMappers()
|
|
long |
getDirectoryId()
Gets the internal unique directoryId of the directory store. |
|
protected Encoder |
getEncoder()
Returns an Encoder that escapes LDAP special characters for use in object names and in DNs. |
|
org.springframework.ldap.core.ContextMapper |
getGroupContextMapper(GroupType groupType)
Returns a ContextMapper ready to translate LDAP objects into Groups and fetches all member objects. |
|
protected java.lang.String |
getInitialGroupMemberDN()
Returns the default container member DN. |
|
java.util.Set<java.lang.String> |
getKeys()
Gets all the keys of the attributes. |
|
LDAPPropertiesMapper |
getLdapPropertiesMapper()
|
|
protected javax.naming.directory.Attributes |
getNewGroupAttributes(Group group)
|
|
protected void |
getNewGroupDirectorySpecificAttributes(Group group,
javax.naming.directory.Attributes attributes)
Populates attributes object with directory-specific attributes. |
|
protected javax.naming.directory.Attributes |
getNewUserAttributes(User user,
PasswordCredential credential)
Translates the User into LDAP attributes, in preparation for creating a new user. |
|
protected void |
getNewUserDirectorySpecificAttributes(User user,
javax.naming.directory.Attributes attributes)
Populates attributes object with directory-specific attributes. |
|
SearchDN |
getSearchDN()
|
|
protected java.lang.String |
getStandardisedDN(javax.naming.Name dn)
|
|
protected javax.naming.directory.SearchControls |
getSubTreeSearchControl()
|
|
org.springframework.ldap.core.ContextMapper |
getUserContextMapper()
Returns a ContextMapper that can transform a Context into a User. |
|
java.lang.String |
getValue(java.lang.String name)
Returns any value associated with the given key, returns null if there is no value. |
|
java.util.Set<java.lang.String> |
getValues(java.lang.String name)
Get all the values associated with a given key. |
|
boolean |
isEmpty()
|
|
boolean |
isRolesDisabled()
Expose whether the directory has roles disabled. |
|
protected org.springframework.ldap.core.CollectingNameClassPairCallbackHandler |
pageSearchResults(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
javax.naming.directory.SearchControls searchControls,
org.springframework.ldap.core.DirContextProcessor ldapRequestControls,
int maxResults)
Performs a paged results search on an LDAP directory server searching using the LDAP paged results control option to fetch results in chunks rather than all at once. |
|
protected java.util.List<LDAPGroupWithAttributes> |
postprocessGroups(java.util.List<LDAPGroupWithAttributes> groups)
Perform any post-processing on groups. |
|
void |
removeGroup(java.lang.String name)
Removes the group that matches the supplied name. |
|
void |
removeGroupAttributes(java.lang.String groupName,
java.lang.String attributeName)
Removes all the values for a single attribute key for a group. |
|
void |
removeUser(java.lang.String name)
Removes the user that matches the supplied name. |
|
void |
removeUserAttributes(java.lang.String username,
java.lang.String attributeName)
Removes all the values for a single attribute key for a user. |
|
Group |
renameGroup(java.lang.String oldName,
java.lang.String newName)
Renames a group. |
|
User |
renameUser(java.lang.String oldName,
java.lang.String newName)
Renames a user. |
|
protected java.util.List |
searchEntities(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
int startIndex,
int maxResults)
Executes a search with paging if paged results is supported. |
|
protected java.util.List |
searchEntitiesWithRequestControls(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
javax.naming.directory.SearchControls searchControls,
org.springframework.ldap.core.DirContextProcessor ldapRequestControls,
int startIndex,
int maxResults)
|
|
protected java.util.List<LDAPGroupWithAttributes> |
searchGroupObjects(EntityQuery query)
|
|
protected java.util.List<LDAPGroupWithAttributes> |
searchGroupObjectsOfSpecifiedGroupType(EntityQuery query)
This method expects that the query contains a non-null groupType in the entityDescriptor. |
|
|
searchGroupRelationships(MembershipQuery<T> query)
Searches for membership information. |
|
protected abstract
|
searchGroupRelationshipsWithGroupTypeSpecified(MembershipQuery<T> query)
Execute the search for group relationships given that a group of type GROUP or LEGACY_ROLE has been specified in the EntityDescriptor for the group(s). |
|
|
searchGroups(EntityQuery<T> query)
Searches for groups that match the supplied query criteria. |
|
protected java.util.List<LDAPUserWithAttributes> |
searchUserObjects(EntityQuery query)
|
|
|
searchUsers(EntityQuery<T> query)
Searches for users that match the supplied query criteria. |
|
void |
setAttributes(java.util.Map<java.lang.String,java.lang.String> attributes)
Called by the DirectoryInstanceLoader after
constructing an InternalDirectory. |
|
void |
setDirectoryId(long id)
Called by the DirectoryInstanceLoader after
constructing an InternalDirectory. |
|
void |
storeGroupAttributes(java.lang.String groupName,
java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
Adds or updates a group's attributes with the new Map of attribute values in the directory specified by the passed in directoryId. |
|
void |
storeUserAttributes(java.lang.String username,
java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
Adds or updates a user's attributes with the new Map of attribute values in the directory specified by the passed in directoryId. |
|
boolean |
supportsInactiveAccounts()
Storing active/inactive flag for users in LDAP is currently not supported. |
|
boolean |
supportsNestedGroups()
Allows us to only display nested-group related UI for directories that support it. |
|
void |
testConnection()
Test if a connection to the directory server can be established. |
|
protected
|
typedEntityNotFoundException(java.lang.String name,
java.lang.Class<T> entityClass)
|
|
Group |
updateGroup(GroupTemplate group)
Updates the group. |
|
User |
updateUser(UserTemplate user)
Updates the user. |
|
void |
updateUserCredential(java.lang.String name,
PasswordCredential credential)
Updates the password for a user. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.atlassian.crowd.directory.RemoteDirectory |
|---|
addGroupToGroup, addUserToGroup, getDescriptiveName, isGroupDirectGroupMember, isUserDirectGroupMember, removeGroupFromGroup, removeUserFromGroup |
| Field Detail |
|---|
public static final int DEFAULT_PAGE_SIZE
protected volatile AttributeValuesHolder attributes
protected volatile org.springframework.ldap.core.LdapTemplate ldapTemplate
protected volatile org.springframework.ldap.core.ContextSource contextSource
protected volatile Converter nameConverter
protected volatile SearchDN searchDN
protected volatile LDAPPropertiesMapper ldapPropertiesMapper
protected volatile org.springframework.ldap.transaction.compensating.manager.ContextSourceTransactionManager contextSourceTransactionManager
protected final LDAPQueryTranslater ldapQueryTranslater
protected final com.atlassian.event.api.EventPublisher eventPublisher
| Constructor Detail |
|---|
public SpringLDAPConnector(LDAPQueryTranslater ldapQueryTranslater,
com.atlassian.event.api.EventPublisher eventPublisher,
InstanceFactory instanceFactory)
| Method Detail |
|---|
public long getDirectoryId()
RemoteDirectorydirectoryId of the directory store.
getDirectoryId in interface RemoteDirectorydirectoryId.public void setDirectoryId(long id)
DirectoryInstanceLoader after
constructing an InternalDirectory.
setDirectoryId in interface RemoteDirectoryid - The unique id of the Directory stored in the database.public void setAttributes(java.util.Map<java.lang.String,java.lang.String> attributes)
DirectoryInstanceLoader after
constructing an InternalDirectory.
setAttributes in interface RemoteDirectoryattributes - attributes map.public org.springframework.ldap.core.ContextSource getContextSource()
public LDAPPropertiesMapper getLdapPropertiesMapper()
public java.util.Set<java.lang.String> getValues(java.lang.String name)
Attributes
getValues in interface Attributesname - the key to retrieve the values for
public java.lang.String getValue(java.lang.String name)
Attributesnull if there is no value.
getValue in interface Attributesname - the key to retrieve the value for
null if there is no valuepublic boolean isEmpty()
isEmpty in interface Attributestrue if there are no attributes
public long getAttributeAsLong(java.lang.String name,
long defaultValue)
public boolean getAttributeAsBoolean(java.lang.String name,
boolean defaultValue)
public java.util.Set<java.lang.String> getKeys()
Attributes
getKeys in interface Attributespublic SearchDN getSearchDN()
protected javax.naming.directory.SearchControls getSubTreeSearchControl()
protected Encoder getEncoder()
protected java.util.Map<java.lang.String,java.lang.String> getBaseEnvironmentProperties()
protected org.springframework.ldap.core.CollectingNameClassPairCallbackHandler pageSearchResults(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
javax.naming.directory.SearchControls searchControls,
org.springframework.ldap.core.DirContextProcessor ldapRequestControls,
int maxResults)
throws OperationFailedException
baseDN - The DN to beging the search from.filter - The search filter.contextMapper - Maps from LDAP search results into objects such as Groups.searchControls - The LDAP search scope type.ldapRequestControls - Any LDAP request controls (set to null if you do not need additional request controls for the search).maxResults - maximum number of results to return. Set to -1 if no result limiting is desired (WARNING: doing so is obviously a hazard).
OperationFailedException - Search failed due to a communication error to the remote directory
protected java.util.List searchEntities(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
int startIndex,
int maxResults)
throws OperationFailedException
baseDN - base DN of search.filter - encoded LDAP search filter.contextMapper - directory context to object mapper.startIndex - index to start at. Set to 0 to start from the first result.maxResults - maximum number of results to return. Set to -1 if no result limiting is desired (WARNING: doing so is obviously a hazard).
OperationFailedException - a Communication error occurred when trying to talk to a remote directory
protected java.util.List searchEntitiesWithRequestControls(javax.naming.Name baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
javax.naming.directory.SearchControls searchControls,
org.springframework.ldap.core.DirContextProcessor ldapRequestControls,
int startIndex,
int maxResults)
throws OperationFailedException
OperationFailedExceptionpublic org.springframework.ldap.core.ContextMapper getUserContextMapper()
protected java.util.List<AttributeMapper> getCustomUserAttributeMappers()
public org.springframework.ldap.core.ContextMapper getGroupContextMapper(GroupType groupType)
groupType - the GroupType
protected java.util.List<AttributeMapper> getCustomGroupAttributeMappers()
public LDAPUserWithAttributes findUserByName(java.lang.String name)
throws UserNotFoundException,
OperationFailedException
RemoteDirectoryuser that matches the supplied name.
findUserByName in interface RemoteDirectoryname - the name of the user (username).
UserNotFoundException - a user with the supplied name does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public LDAPUserWithAttributes findUserWithAttributesByName(java.lang.String name)
throws UserNotFoundException,
OperationFailedException
RemoteDirectoryuser that matches the supplied name.
findUserWithAttributesByName in interface RemoteDirectoryname - the name of the user (username).
UserNotFoundException - a user with the supplied name does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
protected java.util.List<LDAPUserWithAttributes> searchUserObjects(EntityQuery query)
throws OperationFailedException,
java.lang.IllegalArgumentException
OperationFailedException
java.lang.IllegalArgumentException
public void removeUser(java.lang.String name)
throws UserNotFoundException,
OperationFailedException
RemoteDirectoryuser that matches the supplied name.
removeUser in interface RemoteDirectoryname - The name of the user (username).
UserNotFoundException - The user does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public void updateUserCredential(java.lang.String name,
PasswordCredential credential)
throws InvalidCredentialException,
UserNotFoundException,
OperationFailedException
RemoteDirectorypassword for a user.
updateUserCredential in interface RemoteDirectoryname - The name of the user (username).credential - The new credential (password).
InvalidCredentialException - The supplied credential is invalid.
UserNotFoundException - The user does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public User renameUser(java.lang.String oldName,
java.lang.String newName)
throws UserNotFoundException,
InvalidUserException,
OperationFailedException
RemoteDirectoryuser.
renameUser in interface RemoteDirectoryoldName - name of existing user.newName - desired name of user.
UserNotFoundException - if the user with the existing name does not exist.
InvalidUserException - if the new username is invalid.
OperationFailedException - if the underlying directory implementation failed to execute the operation.
public void storeUserAttributes(java.lang.String username,
java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
throws UserNotFoundException,
OperationFailedException
RemoteDirectorydirectoryId.
The attributes map represents new or updated attributes and does not replace existing attributes unless the key of an attribute
matches the key of an existing
Attributes with values of empty sets are not added (these attributes are effectively removed).
storeUserAttributes in interface RemoteDirectoryusername - name of user to update.attributes - new or updated attributes (attributes that don't need changing should not appear in this Map).
UserNotFoundException - user with supplied username does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public void removeUserAttributes(java.lang.String username,
java.lang.String attributeName)
throws UserNotFoundException,
OperationFailedException
RemoteDirectory
removeUserAttributes in interface RemoteDirectoryusername - name of the user to update.attributeName - name of attribute to remove.
UserNotFoundException - user with supplied username does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
protected javax.naming.directory.Attributes getNewUserAttributes(User user,
PasswordCredential credential)
throws InvalidCredentialException,
org.springframework.ldap.NamingException
User into LDAP attributes, in preparation for creating a new user.
user - The user object to translate into LDAP attributescredential - raw password.
InvalidCredentialException - The password, if supplied, was invalid in some manner.
org.springframework.ldap.NamingException - If the User could not be translated to an Attributes
protected void getNewUserDirectorySpecificAttributes(User user,
javax.naming.directory.Attributes attributes)
user - (potential) source of information that needs to be added.attributes - attributes to add directory-specific information to.
public LDAPUserWithAttributes addUser(UserTemplate user,
PasswordCredential credential)
throws InvalidUserException,
InvalidCredentialException,
OperationFailedException
addUser in interface RemoteDirectoryuser - template of the user to add.credential - password.
InvalidUserException - if the user to create was deemed invalid by the LDAP server or already exists.
InvalidCredentialException - if the password credential was deemed invalid by the password encoder.
OperationFailedException - if we were unable to add the user to LDAP.
protected void addDefaultSnToUserAttributes(javax.naming.directory.Attributes attrs,
java.lang.String defaultSnValue)
sn if it's not present in the
information provided.
attrs - The LDAP user attributes to be checked and potentially updated.defaultSnValue - default lastname/surname value
protected void addDefaultValueToUserAttributesForAttribute(java.lang.String attributeName,
javax.naming.directory.Attributes attrs,
java.lang.String defaultValue)
public <T extends LDAPDirectoryEntity> T findEntityByDN(java.lang.String dn,
java.lang.Class<T> entityClass)
throws UserNotFoundException,
GroupNotFoundException,
OperationFailedException
LDAPDirectory
findEntityByDN in interface LDAPDirectorydn - standardised disinguished name.entityClass - class of the entity to find (either LDAPUserWithAttributes or LDAPGroupWithAttributes).
UserNotFoundException - if a user
does not exist at the specified DN or the DN does not
exist in the directory. This will also be thrown if
the entity DOES exist but does not match the base DN
or object filter for the entity type.
GroupNotFoundException - if a user
does not exist at the specified DN or the DN does not
exist in the directory. This will also be thrown if
the entity DOES exist but does not match the base DN
or object filter for the entity type.
OperationFailedException - if underlying directory implementation failed to execute the operation.
protected <T extends LDAPDirectoryEntity> java.lang.RuntimeException typedEntityNotFoundException(java.lang.String name,
java.lang.Class<T> entityClass)
throws UserNotFoundException,
GroupNotFoundException
UserNotFoundException
GroupNotFoundException
protected <T extends LDAPDirectoryEntity> T findEntityByDN(java.lang.String dn,
java.lang.String baseDN,
java.lang.String filter,
org.springframework.ldap.core.ContextMapper contextMapper,
java.lang.Class<T> entityClass)
throws UserNotFoundException,
GroupNotFoundException,
OperationFailedException
UserNotFoundException
GroupNotFoundException
OperationFailedException
public User updateUser(UserTemplate user)
throws UserNotFoundException,
OperationFailedException
RemoteDirectoryuser.
updateUser in interface RemoteDirectoryuser - The user to update.
UserNotFoundException - the user does not exist in the directory store.
OperationFailedException - underlying directory implementation failed to execute the operation.
public <T> java.util.List<T> searchUsers(EntityQuery<T> query)
throws OperationFailedException
RemoteDirectoryusers that match the supplied query criteria.
searchUsers in interface RemoteDirectoryquery - EntityQuery for Entity.USER.
List<User> or List<String> of users/usernames
matching the search criteria. An empty List will be returned
if no users matching the criteria are found.
OperationFailedException - if the underlying directory implementation failed to execute the operation
public User authenticate(java.lang.String name,
PasswordCredential credential)
throws InvalidAuthenticationException,
UserNotFoundException,
OperationFailedException
RemoteDirectoryuser with the directory store.
authenticate in interface RemoteDirectoryname - The name of the user (username).credential - The supplied credentials (password).
InvalidAuthenticationException - Authentication with the provided credentials failed.
UserNotFoundException - The user wth the supplied name does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public LDAPGroupWithAttributes findGroupByName(java.lang.String name)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectorygroup that matches the supplied name.
findGroupByName in interface RemoteDirectoryname - the name of the group.
GroupNotFoundException - a group with the supplied name does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public LDAPGroupWithAttributes findGroupWithAttributesByName(java.lang.String name)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectorygroup that matches the supplied name.
findGroupWithAttributesByName in interface RemoteDirectoryname - the name of the group.
GroupNotFoundException - a group with the supplied name does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
protected LDAPGroupWithAttributes findGroupByNameAndType(java.lang.String name,
GroupType groupType)
throws GroupNotFoundException,
OperationFailedException
GroupNotFoundException
OperationFailedException
protected java.util.List<LDAPGroupWithAttributes> searchGroupObjectsOfSpecifiedGroupType(EntityQuery query)
throws OperationFailedException
query - search query.
OperationFailedException - represents a Communication error when trying to talk to a remote directory
protected java.util.List<LDAPGroupWithAttributes> searchGroupObjects(EntityQuery query)
throws OperationFailedException
OperationFailedException
public <T> java.util.List<T> searchGroups(EntityQuery<T> query)
throws OperationFailedException
RemoteDirectorygroups that match the supplied query criteria.
searchGroups in interface RemoteDirectoryquery - EntityQuery for Entity.GROUP.
List or List of groups/groupnames
matching the search criteria. An empty List will be returned
if no groups matching the criteria are found.
OperationFailedException - if the underlying directory implementation failed to execute the operationprotected java.util.List<LDAPGroupWithAttributes> postprocessGroups(java.util.List<LDAPGroupWithAttributes> groups)
groups - to post-process
protected javax.naming.directory.Attributes getNewGroupAttributes(Group group)
throws org.springframework.ldap.NamingException
org.springframework.ldap.NamingException
protected void getNewGroupDirectorySpecificAttributes(Group group,
javax.naming.directory.Attributes attributes)
group - (potential) source of information that needs to be added.attributes - attributes to add directory-specific information to.protected java.lang.String getInitialGroupMemberDN()
public Group addGroup(GroupTemplate group)
throws InvalidGroupException,
OperationFailedException
RemoteDirectorygroup to the directory store.
addGroup in interface RemoteDirectorygroup - template of the group to add.
InvalidGroupException - The supplied group is invalid.
OperationFailedException - underlying directory implementation failed to execute the operation.
public Group updateGroup(GroupTemplate group)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectorygroup.
updateGroup in interface RemoteDirectorygroup - The group to update.
GroupNotFoundException - the group does not exist in the directory store.
OperationFailedException - underlying directory implementation failed to execute the operation.
public void removeGroup(java.lang.String name)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectorygroup that matches the supplied name.
removeGroup in interface RemoteDirectoryname - The name of the group.
GroupNotFoundException - The group does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public Group renameGroup(java.lang.String oldName,
java.lang.String newName)
throws GroupNotFoundException,
InvalidGroupException,
OperationFailedException
RemoteDirectorygroup.
renameGroup in interface RemoteDirectoryoldName - name of existing group.newName - desired name of group.
GroupNotFoundException - if the group with the existing name does not exist.
InvalidGroupException - if the new groupname is invalid or already exists in the directory.
OperationFailedException - if the underlying directory implementation failed to execute the operation.
public void storeGroupAttributes(java.lang.String groupName,
java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectorydirectoryId.
The attributes map represents new or updated attributes and does not replace existing attributes unless the key of an attribute
matches the key of an existing
Attributes with values of empty sets are not added (these attributes are effectively removed).
storeGroupAttributes in interface RemoteDirectorygroupName - name of group to update.attributes - new or updated attributes (attributes that don't need changing should not appear in this Map).
GroupNotFoundException - group with supplied groupName does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public void removeGroupAttributes(java.lang.String groupName,
java.lang.String attributeName)
throws GroupNotFoundException,
OperationFailedException
RemoteDirectory
removeGroupAttributes in interface RemoteDirectorygroupName - name of the group to update.attributeName - name of attribute to remove.
GroupNotFoundException - group with supplied groupName does not exist.
OperationFailedException - underlying directory implementation failed to execute the operation.
public <T> java.util.List<T> searchGroupRelationships(MembershipQuery<T> query)
throws OperationFailedException
RemoteDirectory
searchGroupRelationships in interface RemoteDirectoryquery - query for memberships.
OperationFailedException - underlying directory implementation failed to execute the operation.
protected abstract <T> java.util.List<T> searchGroupRelationshipsWithGroupTypeSpecified(MembershipQuery<T> query)
throws OperationFailedException
query - membership query with all GroupType's not null.
OperationFailedException - if the operation failed due to a communication error with the remote directory,
or if the query is invalid
protected abstract java.lang.Object encodePassword(java.lang.String unencodedPassword)
throws InvalidCredentialException
unencodedPassword - The password to be transformed
InvalidCredentialException - If the password could not be converted.public boolean supportsNestedGroups()
RemoteDirectory
supportsNestedGroups in interface RemoteDirectorypublic boolean isRolesDisabled()
RemoteDirectory
isRolesDisabled in interface RemoteDirectory
public void testConnection()
throws OperationFailedException
RemoteDirectory
testConnection in interface RemoteDirectoryOperationFailedException - underlying directory implementation failed to execute the operation.
protected java.lang.String getStandardisedDN(javax.naming.Name dn)
throws OperationFailedException
OperationFailedException
protected <T extends LDAPDirectoryEntity> javax.naming.ldap.LdapName asLdapName(java.lang.String dn,
java.lang.String entityName,
java.lang.Class<T> entityClass)
throws UserNotFoundException,
GroupNotFoundException
dn - string version of DN.entityName - used if NotFoundException needs to be thrown.entityClass - in case there is a problem converting the dn into an LdapName a NotFoundException of this type (group/user) will be thrown.
Must implement User or Group, otherwise an IllegalArgumentException will be thrown.
UserNotFoundException - unable to construct LdapName for User.
GroupNotFoundException - unable to construct LdapName for Group.
protected javax.naming.ldap.LdapName asLdapGroupName(java.lang.String dn,
java.lang.String groupName)
throws GroupNotFoundException
dn - DN of the Group.groupName - for GNFE exception.
GroupNotFoundException - unable to construct LdapName.
protected javax.naming.ldap.LdapName asLdapUserName(java.lang.String dn,
java.lang.String userName)
throws UserNotFoundException
dn - DN of the User.userName - for GNFE exception.
UserNotFoundException - unable to construct LdapName.public boolean supportsInactiveAccounts()
supportsInactiveAccounts in interface RemoteDirectory
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||