Enum Class TracingRootType

java.lang.Object
java.lang.Enum<TracingRootType>
com.evolveum.midpoint.xml.ns._public.common.common_3.TracingRootType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<TracingRootType>, Constable

public enum TracingRootType extends Enum<TracingRootType> implements TypeSafeEnum
Points at which tracing can be requested. Each of them has to implement appropriate logic to start tracing and store the result. EXPERIMENTAL
  • Enum Constant Details

    • CLOCKWORK_RUN

      public static final TracingRootType CLOCKWORK_RUN
      Clockwork.run execution.
    • ACTIVITY_ITEM_PROCESSING

      public static final TracingRootType ACTIVITY_ITEM_PROCESSING
      Item processing within an activity.
    • ASYNCHRONOUS_MESSAGE_PROCESSING

      public static final TracingRootType ASYNCHRONOUS_MESSAGE_PROCESSING
      Processing of asynchronous message.
    • LIVE_SYNC_CHANGE_PROCESSING

      public static final TracingRootType LIVE_SYNC_CHANGE_PROCESSING
      Processing of live sync change event.
    • RETRIEVED_RESOURCE_OBJECT_PROCESSING

      public static final TracingRootType RETRIEVED_RESOURCE_OBJECT_PROCESSING
      Processing of object retrieved from a resource (e.g. when doing import or reconciliation).
    • WORKFLOW_OPERATION

      public static final TracingRootType WORKFLOW_OPERATION
      Processing of workflow operation.
  • Method Details

    • values

      public static TracingRootType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TracingRootType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static TracingRootType fromValue(String v)