|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepEngine.InboundMessageLoggingFailurePolicy>
com.neeve.aep.AepEngine.InboundMessageLoggingFailurePolicy
public static enum AepEngine.InboundMessageLoggingFailurePolicy
Enumerates policies for handling inbound message logging failures.
This enumerates the policy that determines what to do in the event of an inbound message logging failures.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
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.InboundMessageLoggingFailurePolicy StopLogging
public static final AepEngine.InboundMessageLoggingFailurePolicy StopEngine
This is the default policy.
Method Detail |
---|
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 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 |