org.xbib.groovy.ldap.SearchScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-ldap Show documentation
Show all versions of groovy-ldap Show documentation
LDAP extensions for Groovy
package org.xbib.groovy.ldap;
import javax.naming.directory.SearchControls;
/**
* Enumeration for the search scope options. To be used in LDAP search operations.
*/
public enum SearchScope {
BASE(SearchControls.OBJECT_SCOPE),
ONE(SearchControls.ONELEVEL_SCOPE),
SUB(SearchControls.SUBTREE_SCOPE);
private int jndiValue;
SearchScope(int jndiValue) {
this.jndiValue = jndiValue;
}
public int getJndiValue() {
return jndiValue;
}
}