spring-projects / spring-projects/spring-ldap
Port LdapTemplate CRUD operations
Open
@etrandafir93 is already working on this.
Since Apr 7, 2025.
in: core
type: enhancement
- Dominant language
- Java
- Stars
- 375
- Forks
- 501
- Avg merge
- 6h 4m
- Merged PRs (30d)
- 63
Description
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() {
// ...
}
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.