Package org.springframework.ldap.core
Class LdapEntryIdentificationContextMapper
- java.lang.Object
-
- org.springframework.ldap.core.LdapEntryIdentificationContextMapper
-
- All Implemented Interfaces:
ContextMapper<LdapEntryIdentification>
public class LdapEntryIdentificationContextMapper extends java.lang.Object implements ContextMapper<LdapEntryIdentification>
ContextMapperimplementation that maps the found entries to theLdapEntryIdentificationof each respective entry.- Since:
- 1.3
-
-
Constructor Summary
Constructors Constructor Description LdapEntryIdentificationContextMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LdapEntryIdentificationmapFromContext(java.lang.Object ctx)Map a single LDAP Context to an object.
-
-
-
Method Detail
-
mapFromContext
public LdapEntryIdentification mapFromContext(java.lang.Object ctx)
Description copied from interface:ContextMapperMap a single LDAP Context to an object. The supplied Objectctxis the object from a singleSearchResult,Binding, or a lookup operation.- Specified by:
mapFromContextin interfaceContextMapper<LdapEntryIdentification>- Parameters:
ctx- the context to map to an object. Typically this will be aDirContextAdapterinstance, unless a project specificDirObjectFactoryhas been specified on theContextSource.- Returns:
- an object built from the data in the context.
-
-