public static enum GKAuthentication.Status extends java.lang.Enum<GKAuthentication.Status>
| Enum Constant and Description |
|---|
BAD_TEMPLATE
The given template data was not acceptable.
|
CANCELED
The action was terminated by request.
|
NOT_FOUND
The target path of the action could not be found.
|
SIGN_IN_FAILURE
The client did not successfully start a session on the GateKeeper Card.
|
SIGNED_IN
The client has successfully started a session on the GateKeeper Card.
|
SIGNED_OUT
The client has ended the current session on the GateKeeper Card.
|
SUCCESS
The action was successful.
|
TEMPLATE_ADDED
The given template data was successfully stored on the GateKeeper Card.
|
UNAUTHORIZED
The client is not currently Authenticated with the GateKeeper Card.
|
UNKNOWN_STATUS
The GateKeeper Card API returned a result that GKAuthentication does
not understand.
|
| Modifier and Type | Method and Description |
|---|---|
static GKAuthentication.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKAuthentication.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKAuthentication.Status SUCCESS
public static final GKAuthentication.Status TEMPLATE_ADDED
public static final GKAuthentication.Status SIGNED_IN
public static final GKAuthentication.Status SIGNED_OUT
public static final GKAuthentication.Status SIGN_IN_FAILURE
public static final GKAuthentication.Status UNAUTHORIZED
public static final GKAuthentication.Status BAD_TEMPLATE
public static final GKAuthentication.Status NOT_FOUND
public static final GKAuthentication.Status CANCELED
public static final GKAuthentication.Status UNKNOWN_STATUS
public static GKAuthentication.Status[] values()
for (GKAuthentication.Status c : GKAuthentication.Status.values()) System.out.println(c);
public static GKAuthentication.Status 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