public static enum AepEngine.OutboundMessageLoggingFailurePolicy extends Enum<AepEngine.OutboundMessageLoggingFailurePolicy>
This enumerates the policy that determines what to do in the event of an outbound message logging failure.
Enum Constant and Description |
---|
StopEngine
This policy specifies that a failure in outbound logging will
be treated as a failure which will result in shutdown of the engine.
|
StopLogging
This policy specifies that outbound logging errors will be trapped
and cause the engine to discontinue outbound message logging.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.OutboundMessageLoggingFailurePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.OutboundMessageLoggingFailurePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.OutboundMessageLoggingFailurePolicy StopLogging
public static final AepEngine.OutboundMessageLoggingFailurePolicy StopEngine
This is the default policy.
public static AepEngine.OutboundMessageLoggingFailurePolicy[] values()
for (AepEngine.OutboundMessageLoggingFailurePolicy c : AepEngine.OutboundMessageLoggingFailurePolicy.values()) System.out.println(c);
public static AepEngine.OutboundMessageLoggingFailurePolicy 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.