com.neeve.aep
Enum AepEngine.OutboundMessageLoggingPolicy

java.lang.Object
  extended by java.lang.Enum<AepEngine.OutboundMessageLoggingPolicy>
      extended by com.neeve.aep.AepEngine.OutboundMessageLoggingPolicy
All Implemented Interfaces:
Serializable, Comparable<AepEngine.OutboundMessageLoggingPolicy>
Enclosing class:
AepEngine

public static enum AepEngine.OutboundMessageLoggingPolicy
extends 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

Off

public static final AepEngine.OutboundMessageLoggingPolicy Off
Disable outbound message logging.

With this policy, outbound message logging is disabled.

This is the default policy.


UseDedicated

public static final AepEngine.OutboundMessageLoggingPolicy UseDedicated
Use a logger dedicated to outbound message logging.

With this policy, the engine uses a logger dedicated to logging outbound messages.

Method Detail

values

public static AepEngine.OutboundMessageLoggingPolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AepEngine.OutboundMessageLoggingPolicy c : AepEngine.OutboundMessageLoggingPolicy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AepEngine.OutboundMessageLoggingPolicy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2016 Neeve Research, LLC. All Rights Reserved.