public enum AuthenticationPackage extends java.lang.Enum<AuthenticationPackage>
| Enum Constant and Description |
|---|
BASIC
Basic.
|
CERTIFICATE
Certificate.
|
KERBEROS
Kerberos.
|
KERBEROS_NTLM
KerberosNtlm.
|
NONE
None.
|
NTLM
Ntlm.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationPackage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationPackage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationPackage BASIC
public static final AuthenticationPackage KERBEROS
public static final AuthenticationPackage KERBEROS_NTLM
public static final AuthenticationPackage NTLM
public static final AuthenticationPackage CERTIFICATE
public static final AuthenticationPackage NONE
public static AuthenticationPackage[] values()
for (AuthenticationPackage c : AuthenticationPackage.values()) System.out.println(c);
public static AuthenticationPackage 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 null