public enum SecurityStrategyType extends Enum<SecurityStrategyType>
SecurityStrategyCxfAdapter that specify when a strategy should be applied to a message.| Enum Constant and Description |
|---|
INCOMING
For configurations that should be applied to incoming (response) messages.
|
OUTGOING
For configurations that should be applied to outgoing (request) messages.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStrategyType INCOMING
public static final SecurityStrategyType OUTGOING
public static SecurityStrategyType[] values()
for (SecurityStrategyType c : SecurityStrategyType.values()) System.out.println(c);
public static SecurityStrategyType 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 © 2003–2018 MuleSoft, Inc.. All rights reserved.