public enum ResponseType extends java.lang.Enum<ResponseType>
Enum Constant and Description |
---|
CLIENT_TICKET
IDP ticket is sent using URL hash:
//service-provider-url#idp_ticket=value |
SERVER_TICKET
IDP ticket is sent using URL parameter:
//service-provider-url?idp_ticket=value |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCode() |
static ResponseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseType CLIENT_TICKET
//service-provider-url#idp_ticket=value
public static final ResponseType SERVER_TICKET
//service-provider-url?idp_ticket=value
public static ResponseType[] values()
for (ResponseType c : ResponseType.values()) System.out.println(c);
public static ResponseType 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 nullpublic java.lang.String getCode()