public static enum WebFlowMessageHandlerAdaptor.Direction extends Enum<WebFlowMessageHandlerAdaptor.Direction>
| Enum Constant and Description |
|---|
INBOUND
Indicates to invoke the handle on the inbound message context, obtained via
InOutOperationContext.getInboundMessageContext(). |
OUTBOUND
Indicates to invoke the handle on the outbound message context, obtained via
InOutOperationContext.getOutboundMessageContext(). |
| Modifier and Type | Method and Description |
|---|---|
static WebFlowMessageHandlerAdaptor.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebFlowMessageHandlerAdaptor.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebFlowMessageHandlerAdaptor.Direction INBOUND
InOutOperationContext.getInboundMessageContext().public static final WebFlowMessageHandlerAdaptor.Direction OUTBOUND
InOutOperationContext.getOutboundMessageContext().public static WebFlowMessageHandlerAdaptor.Direction[] values()
for (WebFlowMessageHandlerAdaptor.Direction c : WebFlowMessageHandlerAdaptor.Direction.values()) System.out.println(c);
public static WebFlowMessageHandlerAdaptor.Direction 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 nullCopyright © 1999–2018 Shibboleth Consortium. All rights reserved.