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