public static enum AuthenticationInfo.Method extends java.lang.Enum<AuthenticationInfo.Method>
Enum Constant and Description |
---|
UNKNOWN
Not used.
|
USERPWD
Username/password authentication type.
|
X509V3
PKCS12/X509V3 authentication type using LDAPv3.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationInfo.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationInfo.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationInfo.Method USERPWD
public static final AuthenticationInfo.Method X509V3
public static final AuthenticationInfo.Method UNKNOWN
public static AuthenticationInfo.Method[] values()
for (AuthenticationInfo.Method c : AuthenticationInfo.Method.values()) System.out.println(c);
public static AuthenticationInfo.Method valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2014 Cloud Software Group, Inc. All rights reserved.