public class QueryDslLdapRepository<T> extends SimpleLdapRepository<T> implements org.springframework.data.querydsl.QueryDslPredicateExecutor<T>
| Constructor and Description |
|---|
QueryDslLdapRepository(LdapOperations ldapOperations,
ObjectDirectoryMapper odm,
Class<T> clazz) |
| Modifier and Type | Method and Description |
|---|---|
long |
count(com.mysema.query.types.Predicate predicate) |
boolean |
exists(com.mysema.query.types.Predicate predicate) |
Iterable<T> |
findAll(com.mysema.query.types.OrderSpecifier<?>... orders) |
List<T> |
findAll(com.mysema.query.types.Predicate predicate) |
Iterable<T> |
findAll(com.mysema.query.types.Predicate predicate,
com.mysema.query.types.OrderSpecifier<?>... orders) |
org.springframework.data.domain.Page<T> |
findAll(com.mysema.query.types.Predicate predicate,
org.springframework.data.domain.Pageable pageable) |
Iterable<T> |
findAll(com.mysema.query.types.Predicate predicate,
org.springframework.data.domain.Sort sort) |
T |
findOne(com.mysema.query.types.Predicate predicate) |
public QueryDslLdapRepository(LdapOperations ldapOperations, ObjectDirectoryMapper odm, Class<T> clazz)
public T findOne(com.mysema.query.types.Predicate predicate)
findOne in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public List<T> findAll(com.mysema.query.types.Predicate predicate)
findAll in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public long count(com.mysema.query.types.Predicate predicate)
count in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public boolean exists(com.mysema.query.types.Predicate predicate)
exists in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public Iterable<T> findAll(com.mysema.query.types.Predicate predicate, org.springframework.data.domain.Sort sort)
findAll in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public Iterable<T> findAll(com.mysema.query.types.OrderSpecifier<?>... orders)
findAll in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>public Iterable<T> findAll(com.mysema.query.types.Predicate predicate, com.mysema.query.types.OrderSpecifier<?>... orders)
findAll in interface org.springframework.data.querydsl.QueryDslPredicateExecutor<T>