Uses of Class
org.opends.server.api.IdentityMapper
-
Packages that use IdentityMapper Package Description org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages. -
-
Uses of IdentityMapper in org.opends.server.api
Method parameters in org.opends.server.api with type arguments of type IdentityMapper Modifier and Type Method Description static Entry
IdentityMapper. getEntryForID(String id, List<IdentityMapper<?>> identityMappers)
Retrieves the user entry that was mapped to the provided identification string from a list ofIdentityMapper
s. -
Uses of IdentityMapper in org.opends.server.core
Methods in org.opends.server.core that return IdentityMapper Modifier and Type Method Description IdentityMapper<?>
DirectoryServer. getIdentityMapper(Dn configEntryDN)
IdentityMapper<?>
ServerContext. getIdentityMapper(Dn configEntryDN)
Retrieves the Directory Server identity mapper whose configuration resides in the specified configuration entry.Methods in org.opends.server.core that return types with arguments of type IdentityMapper Modifier and Type Method Description List<IdentityMapper<?>>
DirectoryServer. getIdentityMappers(Collection<Dn> configEntriesDNs)
List<IdentityMapper<?>>
ServerContext. getIdentityMappers(Collection<Dn> configEntriesDNs)
Retrieves the Directory Server identity mappers whose configurations reside in the specified configuration entries.List<IdentityMapper<?>>
DirectoryServer. getProxiedAuthorizationIdentityMappers()
List<IdentityMapper<?>>
ServerContext. getProxiedAuthorizationIdentityMappers()
Retrieves the identity mappers that should be used to resolve authorization IDs contained in proxied authorization V2 controls.Methods in org.opends.server.core with parameters of type IdentityMapper Modifier and Type Method Description void
DirectoryServer. registerIdentityMapper(Dn configEntryDN, IdentityMapper<?> identityMapper)
void
ServerContext. registerIdentityMapper(Dn configEntryDN, IdentityMapper<?> identityMapper)
Registers the provided identity mapper for use with the Directory Server. -
Uses of IdentityMapper in org.opends.server.extensions
Subclasses of IdentityMapper in org.opends.server.extensions Modifier and Type Class Description class
ExactMatchIdentityMapper
This class provides an implementation of a Directory Server identity mapper that looks for the exact value provided as the ID string to appear in an attribute of a user's entry.class
RegularExpressionIdentityMapper
This class provides an implementation of a Directory Server identity mapper that uses a regular expression to process the provided ID string, and then looks for that processed value to appear in an attribute of a user's entry.
-