Spring LDAP

org.springframework.ldap.ldif.batch
Interface RecordMapper<T>

Type Parameters:
T -

public interface RecordMapper<T>

This interface should be implemented to map LdapAttributes objects to POJOs. The resulting implementations can be used in the MappingLdifReader.

Author:
Keith Barlow

Method Summary
 T mapRecord(LdapAttributes attributes)
          Maps an LdapAttributes object to the specified type.
 

Method Detail

mapRecord

T mapRecord(LdapAttributes attributes)
Maps an LdapAttributes object to the specified type.

Parameters:
attributes -
Returns:
object of type T

Spring LDAP