spring-ldap icon indicating copy to clipboard operation
spring-ldap copied to clipboard

Port LdapTemplate CRUD operations

Open jzheaux opened this issue 3 years ago • 0 comments
trafficstars

LdapTemplate includes support for ODM. Instead of porting this over to LdapClient, it's worth considering placing it into something that follows the Spring Data model like so:

public class SpringLdapRepository<T> {
    private final LdapClient client;
    private final ObjectMappingDirectory odm = ...;

    public List<T> findAll() { 
        // ...
    }
}

jzheaux avatar Aug 16 '22 00:08 jzheaux