Spring LDAP

org.springframework.ldap.repository.support
Class QueryDslLdapQuery<K>

java.lang.Object
  extended by org.springframework.ldap.repository.support.QueryDslLdapQuery<K>
All Implemented Interfaces:
com.mysema.query.FilteredClause<QueryDslLdapQuery<K>>

public class QueryDslLdapQuery<K>
extends Object
implements com.mysema.query.FilteredClause<QueryDslLdapQuery<K>>

Spring LDAP specific FilteredClause implementation.

Since:
2.0
Author:
Mattias Hellborg Arthursson

Constructor Summary
QueryDslLdapQuery(LdapOperations ldapOperations, Class<K> clazz)
           
QueryDslLdapQuery(LdapOperations ldapOperations, com.mysema.query.types.EntityPath<K> entityPath)
           
 
Method Summary
 List<K> list()
           
 K uniqueResult()
           
 QueryDslLdapQuery<K> where(com.mysema.query.types.Predicate... o)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryDslLdapQuery

public QueryDslLdapQuery(LdapOperations ldapOperations,
                         com.mysema.query.types.EntityPath<K> entityPath)

QueryDslLdapQuery

public QueryDslLdapQuery(LdapOperations ldapOperations,
                         Class<K> clazz)
Method Detail

where

public QueryDslLdapQuery<K> where(com.mysema.query.types.Predicate... o)
Specified by:
where in interface com.mysema.query.FilteredClause<QueryDslLdapQuery<K>>

list

public List<K> list()

uniqueResult

public K uniqueResult()

Spring LDAP