com.waveset.object
Class WorkflowValidator.Severity

java.lang.Object
  extended bycom.waveset.util.Enum
      extended bycom.waveset.object.WorkflowValidator.Severity
All Implemented Interfaces:
java.lang.Comparable
Enclosing class:
WorkflowValidator

public static final class WorkflowValidator.Severity
extends Enum

The severity of an error message


Field Summary
static WorkflowValidator.Severity ALL
          Placeholder to turn on all validation.
static WorkflowValidator.Severity CRITICAL
          Critical message.
static WorkflowValidator.Severity ERROR
          Error message.
static WorkflowValidator.Severity NONE
          Placeholder to turn off validation.
static WorkflowValidator.Severity WARNING
          Warning message.
 
Methods inherited from class com.waveset.util.Enum
compareTo, equals, getDisplayName, getEnumByName, getEnums, getName, getOrdinal, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

ALL

public static final WorkflowValidator.Severity ALL
Placeholder to turn on all validation. Keep this listed first.


WARNING

public static final WorkflowValidator.Severity WARNING
Warning message.


ERROR

public static final WorkflowValidator.Severity ERROR
Error message. A workflow with any error messages will not be saved in the BPE without first prompting the user.


CRITICAL

public static final WorkflowValidator.Severity CRITICAL
Critical message. A workflow with any critical messages will not be run.


NONE

public static final WorkflowValidator.Severity NONE
Placeholder to turn off validation. Keep this listed last.