@Target(value=METHOD) @Retention(value=RUNTIME) @Documented public @interface Query
LdapRepository declarations
to create automatic query methods based on statically defined queries.| Modifier and Type | Optional Element and Description |
|---|---|
String |
base
Search base, to be used as input to
LdapQueryBuilder.base(javax.naming.Name). |
int |
countLimit
Count limit, to be used as input to
LdapQueryBuilder.countLimit(int). |
SearchScope |
searchScope
Search scope, to be used as input to
LdapQueryBuilder.searchScope(org.springframework.ldap.query.SearchScope). |
int |
timeLimit
Time limit, to be used as input to
LdapQueryBuilder.timeLimit(int). |
String |
value
The filter format string, to be used as input to
LdapQueryBuilder.filter(String, Object...). |
public abstract String base
LdapQueryBuilder.base(javax.naming.Name).LdapUtils.emptyLdapName()public abstract String value
LdapQueryBuilder.filter(String, Object...).public abstract SearchScope searchScope
LdapQueryBuilder.searchScope(org.springframework.ldap.query.SearchScope).public abstract int timeLimit
LdapQueryBuilder.timeLimit(int).public abstract int countLimit
LdapQueryBuilder.countLimit(int).