public enum EnumAuthMethod extends Enum<EnumAuthMethod>
Enum Constant and Description |
---|
AUTHMETHOD_NONE
The enumeration type when the bind rule has specified authentication of
none.
|
AUTHMETHOD_SASL
The enumeration type when the bind rule has specified authentication of
a sasl mechanism.
|
AUTHMETHOD_SIMPLE
The enumeration type when the bind rule has specified authentication of
simple.
|
AUTHMETHOD_SSL
The enumeration type when the bind rule has specified authentication of
ssl client auth.
|
Modifier and Type | Method and Description |
---|---|
static EnumAuthMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumAuthMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAuthMethod AUTHMETHOD_NONE
public static final EnumAuthMethod AUTHMETHOD_SIMPLE
public static final EnumAuthMethod AUTHMETHOD_SSL
public static final EnumAuthMethod AUTHMETHOD_SASL
public static EnumAuthMethod[] values()
for (EnumAuthMethod c : EnumAuthMethod.values()) System.out.println(c);
public static EnumAuthMethod 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-2016 ForgeRock AS. All Rights Reserved.