public interface LdapRepository<T> extends org.springframework.data.repository.CrudRepository<T,Name>
CrudRepository.| Modifier and Type | Method and Description |
|---|---|
List<T> |
findAll() |
Iterable<T> |
findAll(org.springframework.ldap.query.LdapQuery ldapQuery)
Find all entries matching the specified query.
|
List<T> |
findAllById(Iterable<Name> names) |
Optional<T> |
findOne(org.springframework.ldap.query.LdapQuery ldapQuery)
Find one entry matching the specified query.
|
<S extends T> |
saveAll(Iterable<S> entities) |
Optional<T> findOne(org.springframework.ldap.query.LdapQuery ldapQuery)
ldapQuery - the query specification.null if no matching entry was found.IncorrectResultSizeDataAccessException - if more than one entry matches the query.Copyright © 2011–2023 Pivotal Software, Inc.. All rights reserved.