com.ibm.broker.config.proxy
Class MessageFlowProxy.UserTrace

java.lang.Object
  extended by com.ibm.broker.config.proxy.MessageFlowProxy.UserTrace
Enclosing class:
MessageFlowProxy

public static class MessageFlowProxy.UserTrace
extends java.lang.Object

A small structure that represents all the possible types of user trace. Follows the TypeDef-Enum pattern.


Field Summary
static MessageFlowProxy.UserTrace debug
          Defines debug user trace.
static MessageFlowProxy.UserTrace none
          States that user trace is not running.
static MessageFlowProxy.UserTrace normal
          Defines normal user trace.
static MessageFlowProxy.UserTrace unknown
          Defines an unknown user trace setting.
 
Method Summary
static MessageFlowProxy.UserTrace getUserTraceFromString(java.lang.String ut)
          Returns a user trace value given a property String.
 java.lang.String toString()
          Returns the String representation of the user trace.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

unknown

public static MessageFlowProxy.UserTrace unknown
Defines an unknown user trace setting.


none

public static MessageFlowProxy.UserTrace none
States that user trace is not running. This is the default value.


normal

public static MessageFlowProxy.UserTrace normal
Defines normal user trace.


debug

public static MessageFlowProxy.UserTrace debug
Defines debug user trace.

Method Detail

toString

public java.lang.String toString()
Returns the String representation of the user trace.

Overrides:
toString in class java.lang.Object

getUserTraceFromString

public static MessageFlowProxy.UserTrace getUserTraceFromString(java.lang.String ut)
Returns a user trace value given a property String.

Parameters:
ut - String taken from data supplied by the Configuration Manager
Returns:
UserTrace That corresponds to the supplied String, or unknown if the String was not understood.