|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepEngine.OutboundMessageLoggingPolicy>
com.neeve.aep.AepEngine.OutboundMessageLoggingPolicy
public static enum AepEngine.OutboundMessageLoggingPolicy
Enumerates an engine's outbound message logging policy.
This enumerates the policy that determines if and where to log outbound messages
Enum Constant Summary | |
---|---|
Off
Disable outbound message logging. |
|
UseDedicated
Use a logger dedicated to outbound message logging. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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.
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |