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