public static enum SecurityStrategy.SecurityStrategyType extends Enum<SecurityStrategy.SecurityStrategyType>
SecurityStrategy that specify when a strategy should be applied to a message.| Enum Constant and Description |
|---|
ALWAYS
If the properties should be applied for both incoming and outgoing intereptors.
|
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 SecurityStrategy.SecurityStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStrategy.SecurityStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStrategy.SecurityStrategyType INCOMING
public static final SecurityStrategy.SecurityStrategyType OUTGOING
public static final SecurityStrategy.SecurityStrategyType ALWAYS
public static SecurityStrategy.SecurityStrategyType[] values()
for (SecurityStrategy.SecurityStrategyType c : SecurityStrategy.SecurityStrategyType.values()) System.out.println(c);
public static SecurityStrategy.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 © 2024. All rights reserved.