public enum EnumUserDNType extends Enum<EnumUserDNType>
Enum Constant and Description |
---|
ALL
The enumeration type when the "userdn" URL has the value of:
"ldap:///all".
|
ANYONE
The enumeration type when the "userdn" URL has the value of:
"ldap:///anyone".
|
DN
The enumeration type when the "userdn" URL contains only a DN (no
filter or scope) and that DN has no pattern.
|
DNPATTERN
The enumeration type when the "userdn" URL contains only a DN (no
filter or scope) and that DN has a substring pattern.
|
PARENT
The enumeration type when the "userdn" URL has the value of:
"ldap:///parent".
|
SELF
The enumeration type when the "userdn" URL has the value of:
"ldap:///self".
|
URL
The enumeration type when the "userdn" URL is contains a DN (suffix),
a scope and a filter.
|
Modifier and Type | Method and Description |
---|---|
static EnumUserDNType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumUserDNType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumUserDNType DN
public static final EnumUserDNType DNPATTERN
public static final EnumUserDNType ALL
public static final EnumUserDNType PARENT
public static final EnumUserDNType SELF
public static final EnumUserDNType ANYONE
public static final EnumUserDNType URL
public static EnumUserDNType[] values()
for (EnumUserDNType c : EnumUserDNType.values()) System.out.println(c);
public static EnumUserDNType 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 © 2010-2015 ForgeRock AS. All Rights Reserved.