public static enum RuntimeResponse.ResponseType extends java.lang.Enum<RuntimeResponse.ResponseType>
| Enum Constant and Description |
|---|
ATTRIBUTE_ASSERTION
Sets the response as ATTRIBUTE ASSERTIONs.
|
COOKIE
Sets the response as a distinct browser cookie.
|
HEADER
Sets the response as an HTTP header.
|
IDENTITY_ASSERTION
Sets the response as a SAML assertion containing an encapsulated subset
of details regarding the user and their session.
|
SESSION
Sets the response in the current SME session of the user.
|
TRANSIENT
Used only for Internal Server processing.
|
| Modifier and Type | Method and Description |
|---|---|
static RuntimeResponse.ResponseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeResponse.ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeResponse.ResponseType COOKIE
public static final RuntimeResponse.ResponseType HEADER
public static final RuntimeResponse.ResponseType SESSION
public static final RuntimeResponse.ResponseType IDENTITY_ASSERTION
public static final RuntimeResponse.ResponseType ATTRIBUTE_ASSERTION
public static final RuntimeResponse.ResponseType TRANSIENT
public static RuntimeResponse.ResponseType[] values()
for (RuntimeResponse.ResponseType c : RuntimeResponse.ResponseType.values()) System.out.println(c);
public static RuntimeResponse.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 null