All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.groovy.ldap.SearchScope Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy