public static enum LdapSender.Operation extends Enum<LdapSender.Operation> implements DocumentedEnum
Enum Constant and Description |
---|
CHALLENGE
Check username and password against LDAP specifying principal and credential using parameters.
|
CHANGE_UNICODE_PWD
Typical user change-password operation (one of the two methods to modify the unicodePwd attribute in AD (http://support.microsoft.com/kb/263991)).
|
CREATE
Create an attribute or an entry.
|
DEEP_SEARCH
Search for an entry in the complete tree below the specified root.
|
DELETE
Delete an attribute or an entry.
|
GET_TREE
Get a copy of the complete tree below the specified root.
|
READ
Read the contents of an entry.
|
SEARCH
Search for an entry in the direct children of the specified root.
|
SUB_CONTEXTS
Get a list of the direct children of the specifed root.
|
UPDATE
Update an attribute or an entry.
|
Modifier and Type | Method and Description |
---|---|
static LdapSender.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapSender.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getLabel, name
public static final LdapSender.Operation READ
public static final LdapSender.Operation CREATE
public static final LdapSender.Operation UPDATE
public static final LdapSender.Operation DELETE
public static final LdapSender.Operation SEARCH
public static final LdapSender.Operation DEEP_SEARCH
public static final LdapSender.Operation SUB_CONTEXTS
public static final LdapSender.Operation GET_TREE
public static final LdapSender.Operation CHALLENGE
public static final LdapSender.Operation CHANGE_UNICODE_PWD
public static LdapSender.Operation[] values()
for (LdapSender.Operation c : LdapSender.Operation.values()) System.out.println(c);
public static LdapSender.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Frank!Framework. All rights reserved.