toolbox.ldap
Class LDAPConstants

Package class diagram package LDAPConstants
java.lang.Object
  extended by toolbox.ldap.LDAPConstants

public final class LDAPConstants
extends java.lang.Object

Final class containing some constants used during LDAP operations.


Field Summary
static int ADD_ATTRIBUTE
          Add the attribute values.
static int OBJECT_SCOPE
          Search the object itself.
static int ONELEVEL_SCOPE
          Search one level from the named context.
static int REMOVE_ATTRIBUTE
          Remove existing attribute values.
static int REPLACE_ATTRIBUTE
          Replace existing attribute values.
static int SUBTREE_SCOPE
          Search the entire subtree rooted at the named object.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

OBJECT_SCOPE

public static final int OBJECT_SCOPE
Search the object itself.

See Also:
Constant Field Values

ONELEVEL_SCOPE

public static final int ONELEVEL_SCOPE
Search one level from the named context.

See Also:
Constant Field Values

SUBTREE_SCOPE

public static final int SUBTREE_SCOPE
Search the entire subtree rooted at the named object.

See Also:
Constant Field Values

ADD_ATTRIBUTE

public static final int ADD_ATTRIBUTE
Add the attribute values.

See Also:
Constant Field Values

REPLACE_ATTRIBUTE

public static final int REPLACE_ATTRIBUTE
Replace existing attribute values.

See Also:
Constant Field Values

REMOVE_ATTRIBUTE

public static final int REMOVE_ATTRIBUTE
Remove existing attribute values.

See Also:
Constant Field Values