public static enum AepEngine.OutboundMessageLoggingPolicy extends Enum<AepEngine.OutboundMessageLoggingPolicy>
This enumerates the policy that determines if and where to log outbound messages
Enum Constant and Description |
---|
Off
Disable outbound message logging.
|
UseDedicated
Use a logger dedicated to outbound message logging.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.OutboundMessageLoggingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.OutboundMessageLoggingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.OutboundMessageLoggingPolicy Off
With this policy, outbound message logging is disabled.
This is the default policy.
public static final AepEngine.OutboundMessageLoggingPolicy UseDedicated
With this policy, the engine uses a logger dedicated to logging outbound messages.
public static AepEngine.OutboundMessageLoggingPolicy[] values()
for (AepEngine.OutboundMessageLoggingPolicy c : AepEngine.OutboundMessageLoggingPolicy.values()) System.out.println(c);
public static AepEngine.OutboundMessageLoggingPolicy 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.