public static enum AepEngine.MessageHandlingPolicy extends Enum<AepEngine.MessageHandlingPolicy>
Enum Constant and Description |
---|
Discard
This policy causes inbound messages to be blindly discarded.
|
Noop
This policy causes inbound messages to be discarded before dispatch
to the application i.e. they are not dispatched to the application.
|
Normal
This policy represents normal message processing operation.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.MessageHandlingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.MessageHandlingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.MessageHandlingPolicy Discard
public static final AepEngine.MessageHandlingPolicy Noop
public static final AepEngine.MessageHandlingPolicy Normal
This is the default message handling policy
public static AepEngine.MessageHandlingPolicy[] values()
for (AepEngine.MessageHandlingPolicy c : AepEngine.MessageHandlingPolicy.values()) System.out.println(c);
public static AepEngine.MessageHandlingPolicy 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 © 2019 Neeve Research, LLC. All Rights Reserved.