org.apache.airavata.ws.monitor
Enum MonitorUtil.EventType

java.lang.Object
  extended by java.lang.Enum<MonitorUtil.EventType>
      extended by org.apache.airavata.ws.monitor.MonitorUtil.EventType
All Implemented Interfaces:
Serializable, Comparable<MonitorUtil.EventType>
Enclosing class:
MonitorUtil

public static enum MonitorUtil.EventType
extends Enum<MonitorUtil.EventType>

Type of the notification event.


Enum Constant Summary
APPLICATION_AUDIT
          applicationAudit
COMPUTATION_DURATION
          computationDuration
DATA_CONSUMED
          dataConsumed
DATA_PRODUCED
          dataProduced
DATA_RECEIVE_DURATION
          dataReceiveDuration
INVOKING_SERVICE
          invokingService
INVOKING_SERVICE_FAILED
          invokingServiceFailed
INVOKING_SERVICE_SUCCEEDED
          invokingServiceSucceeded
LOG_DEBUG
          logDebug
LOG_EXCEPTION
          logException
LOG_INFO
          logInfo
LOG_WARNING
          logWarning
PUBLISH_URL
          publishURL
RECEIVED_FAULT
          receivedFault
RECEIVED_RESULT
          receivedResult
RESOURCE_MAPPING
          resourceMapping
SENDING_FAULT
          sendingFault
SENDING_RESPONSE_FAILED
          sendingResponseFailed
SENDING_RESULT
          sendingResult
SERVICE_INVOKED
          serviceInvoked
UNKNOWN
          unknown
WORKFLOW_INITIALIZED
          workflowInitialized
WORKFLOW_INVOKED
          workflowInvoked
WORKFLOW_TERMINATED
          workflowTerminated
 
Method Summary
static MonitorUtil.EventType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MonitorUtil.EventType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final MonitorUtil.EventType UNKNOWN
unknown


WORKFLOW_INITIALIZED

public static final MonitorUtil.EventType WORKFLOW_INITIALIZED
workflowInitialized


WORKFLOW_INVOKED

public static final MonitorUtil.EventType WORKFLOW_INVOKED
workflowInvoked


WORKFLOW_TERMINATED

public static final MonitorUtil.EventType WORKFLOW_TERMINATED
workflowTerminated


INVOKING_SERVICE

public static final MonitorUtil.EventType INVOKING_SERVICE
invokingService


INVOKING_SERVICE_SUCCEEDED

public static final MonitorUtil.EventType INVOKING_SERVICE_SUCCEEDED
invokingServiceSucceeded


INVOKING_SERVICE_FAILED

public static final MonitorUtil.EventType INVOKING_SERVICE_FAILED
invokingServiceFailed


RECEIVED_RESULT

public static final MonitorUtil.EventType RECEIVED_RESULT
receivedResult


RECEIVED_FAULT

public static final MonitorUtil.EventType RECEIVED_FAULT
receivedFault


SERVICE_INVOKED

public static final MonitorUtil.EventType SERVICE_INVOKED
serviceInvoked


SENDING_RESULT

public static final MonitorUtil.EventType SENDING_RESULT
sendingResult


SENDING_RESPONSE_FAILED

public static final MonitorUtil.EventType SENDING_RESPONSE_FAILED
sendingResponseFailed


SENDING_FAULT

public static final MonitorUtil.EventType SENDING_FAULT
sendingFault


LOG_INFO

public static final MonitorUtil.EventType LOG_INFO
logInfo


LOG_EXCEPTION

public static final MonitorUtil.EventType LOG_EXCEPTION
logException


LOG_WARNING

public static final MonitorUtil.EventType LOG_WARNING
logWarning


LOG_DEBUG

public static final MonitorUtil.EventType LOG_DEBUG
logDebug


DATA_CONSUMED

public static final MonitorUtil.EventType DATA_CONSUMED
dataConsumed


DATA_PRODUCED

public static final MonitorUtil.EventType DATA_PRODUCED
dataProduced


DATA_RECEIVE_DURATION

public static final MonitorUtil.EventType DATA_RECEIVE_DURATION
dataReceiveDuration


APPLICATION_AUDIT

public static final MonitorUtil.EventType APPLICATION_AUDIT
applicationAudit


COMPUTATION_DURATION

public static final MonitorUtil.EventType COMPUTATION_DURATION
computationDuration


PUBLISH_URL

public static final MonitorUtil.EventType PUBLISH_URL
publishURL


RESOURCE_MAPPING

public static final MonitorUtil.EventType RESOURCE_MAPPING
resourceMapping

Method Detail

values

public static MonitorUtil.EventType[] 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 (MonitorUtil.EventType c : MonitorUtil.EventType.values())
    System.out.println(c);

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

valueOf

public static MonitorUtil.EventType 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 © 2011-2013 The Apache Software Foundation. All Rights Reserved.