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