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 <T> List<T> findAll(Class<T> clazz) { return findAll(LdapUtils.emptyLdapName(), getDefaultSearchControls(defaultSearchScope, RETURN_OBJ_FLAG, ALL_ATTRIBUTES), clazz); } ``` Wich results in that the base attribute in the @Entity doens't work for LdapRepositorys findAll() method.