public enum ProtocolError extends Enum<ProtocolError>
| Enum Constant and Description |
|---|
BrokenProxyChain
One or more proxy-granting tickets in proxy chain have expired.
|
IllegalState
Illegal state error.
|
InvalidTicketFormat
Ticket parameter provided but has invalid format.
|
InvalidTicketType
A valid ticket of an unsupported type was provided.
|
ProtocolViolation
Generic protocol violation error.
|
ProxyCallbackAuthenticationFailure
Proxy callback authentication failed.
|
ProxyNotAuthorized
Unauthorized attempt to request proxy-granting ticket.
|
RenewIncompatibleWithProxy
Unsupported condition where a proxy ticket validation occurs with the renew flag set.
|
ServiceMismatch
Validating service does not match service to which ticket was issued.
|
ServiceNotSpecified
Service parameter required but not specified.
|
SessionExpired
IdP session that issued ticket has expired which invalidates ticket.
|
SessionRetrievalError
Error retrieving IdP session.
|
TicketCreationError
Error creating ticket.
|
TicketExpired
Ticket not found or expired.
|
TicketNotFromRenew
Validation specifies renew protocol flag but ticket was not issued from a forced authentication.
|
TicketNotSpecified
Ticket parameter required but not specified.
|
TicketRemovalError
Error removing ticket.
|
TicketRetrievalError
Error retrieving ticket.
|
| Modifier and Type | Field and Description |
|---|---|
private String |
code
Error code.
|
private String |
detailCode
Error detail code.
|
| Modifier and Type | Method and Description |
|---|---|
org.springframework.webflow.execution.Event |
event(Object source)
Creates a Spring webflow event whose ID is given by
Enum.name()} and contains the following attributes:
code
detailCode
The values of attributes correspond to fields of the same names. |
String |
getCode() |
String |
getDetailCode() |
static ProtocolError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolError BrokenProxyChain
public static final ProtocolError IllegalState
public static final ProtocolError InvalidTicketFormat
public static final ProtocolError InvalidTicketType
public static final ProtocolError ProtocolViolation
public static final ProtocolError ProxyCallbackAuthenticationFailure
public static final ProtocolError ProxyNotAuthorized
public static final ProtocolError RenewIncompatibleWithProxy
public static final ProtocolError ServiceNotSpecified
public static final ProtocolError ServiceMismatch
public static final ProtocolError SessionExpired
public static final ProtocolError SessionRetrievalError
public static final ProtocolError TicketNotSpecified
public static final ProtocolError TicketExpired
public static final ProtocolError TicketNotFromRenew
public static final ProtocolError TicketCreationError
public static final ProtocolError TicketRetrievalError
public static final ProtocolError TicketRemovalError
private final String code
private final String detailCode
public static ProtocolError[] values()
for (ProtocolError c : ProtocolError.values()) System.out.println(c);
public static ProtocolError 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 null@Nonnull public org.springframework.webflow.execution.Event event(Object source)
Enum.name()} and contains the following attributes:
source - Event source.Copyright © 1999–2015. All rights reserved.