Package net.shibboleth.idp.profile.impl
Enum WebFlowMessageHandlerAdaptor.Direction
java.lang.Object
java.lang.Enum<WebFlowMessageHandlerAdaptor.Direction>
net.shibboleth.idp.profile.impl.WebFlowMessageHandlerAdaptor.Direction
- All Implemented Interfaces:
Serializable
,Comparable<WebFlowMessageHandlerAdaptor.Direction>
- Enclosing class:
- WebFlowMessageHandlerAdaptor
public static enum WebFlowMessageHandlerAdaptor.Direction
extends Enum<WebFlowMessageHandlerAdaptor.Direction>
Used to indicate the target message context for invocation of the adapted message handler.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates to invoke the handle on the inbound message context, obtained viaInOutOperationContext.getInboundMessageContext()
.Indicates to invoke the handle on the outbound message context, obtained viaInOutOperationContext.getOutboundMessageContext()
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INBOUND
Indicates to invoke the handle on the inbound message context, obtained viaInOutOperationContext.getInboundMessageContext()
. -
OUTBOUND
Indicates to invoke the handle on the outbound message context, obtained viaInOutOperationContext.getOutboundMessageContext()
.
-
-
Constructor Details
-
Direction
private Direction()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-