spring-ldap
spring-ldap copied to clipboard
Spring LDAP
SimpleLdaprepository's findAll() wich in turn calls ``` java ldapOperations.findAll(clazz); ``` Seems to ignore any base set in the @Entry class ``` java /** * {@inheritDoc} */ @Override public List findAll(Class...
In my ldap the users are located in `DN=(ou=users,dc=example,dc=com)`, and service accounts in `DN=(ou=sa,dc=example,dc=com)`. The size of LDAP is huge and it is crucial to limit the search scope to...
LDAP attribute names are case insensitive. however, they are case aware. figured this when I tried to implement an entry. Take this case, let us say we have an attribute...
Hi, Calling the authenticate(Name base, String filter, String password) method on an LdapTemplate connected to AD is returning true when an empty password is provided. Is this the intended behavior?...
https://github.com/spring-projects/spring-ldap/issues/588
I am using the following version of Java: ``` openjdk version "1.8.0_312" OpenJDK Runtime Environment (build 1.8.0_312-8u312-b07-0ubuntu1~18.04-b07) OpenJDK 64-Bit Server VM (build 25.312-b07, mixed mode) ``` When I make the...
Document that `@Transient` should be added to fields annotated with `@DnAttribute` that must not be mapped to an object attribute. Fixes: #459
[The `DefaultObjectDirectoryMapper` ignores](https://github.com/spring-projects/spring-ldap/blob/main/core/src/main/java/org/springframework/ldap/odm/core/impl/DefaultObjectDirectoryMapper.java#L346-L356) the `value` attribute from `@DnAttribute` if `index` is present. See the following sample: https://github.com/marcusdacoregio/ldap-odm-index-bug This is strange behavior that could be fixed or at least documented properly....
`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: ```java public class...
Feature request to provide support for client interceptors on the ldap template.