public static enum SASLAuthentication.Status extends Enum<SASLAuthentication.Status>
| Enum Constant and Description |
|---|
authenticated
SASL negotiation has been successful.
|
failed
SASL negotiation has failed.
|
needResponse
Entity needs to respond last challenge.
|
| Modifier and Type | Method and Description |
|---|---|
static SASLAuthentication.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SASLAuthentication.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SASLAuthentication.Status needResponse
public static final SASLAuthentication.Status failed
public static final SASLAuthentication.Status authenticated
public static SASLAuthentication.Status[] values()
for (SASLAuthentication.Status c : SASLAuthentication.Status.values()) System.out.println(c);
public static SASLAuthentication.Status 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 © 2003-2008 Jive Software.