com.sun.n1.sps.model.executor
Class TaskStatus

java.lang.Object
  extended by com.sun.n1.util.enum.EnumImpl
      extended by com.sun.n1.util.enumx.EnumXImpl
          extended by com.sun.n1.sps.model.executor.TaskStatus
All Implemented Interfaces:
Enum, EnumX

public class TaskStatus
extends EnumXImpl


Nested Class Summary
static class TaskStatus.Factory
          Factory for task status enums.
 
Field Summary
static TaskStatus COMPLETE
          Indicates that the task has completed.
static TaskStatus COMPLETE_WARNINGS
          Indicates that the task has completed with warnings.
static TaskStatus DEPLOYMENT_RUNNING
          Indicates that the deployment task is running.
static TaskStatus.Factory FACTORY
           
static TaskStatus INCOMPLETE_ABORT
          Indicates that the task is incompleted and was aborted.
static TaskStatus INCOMPLETE_ERROR
          Indicates that the task is incompleted with errors.
static TaskStatus INCOMPLETE_TIMEOUT
          Indicates that the task is incompleted and was timed out.
static TaskStatus NOT_STARTED
          Indicates that the task has not started.
static TaskStatus PREFLIGHT_RUNNING
          Indicates that the pre-flight task is running.
 
Method Summary
 
Methods inherited from class com.sun.n1.util.enum.EnumImpl
equals, hashCode, toInt, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.sun.n1.util.enum.Enum
toInt
 

Field Detail

FACTORY

public static final TaskStatus.Factory FACTORY

NOT_STARTED

public static final TaskStatus NOT_STARTED
Indicates that the task has not started.


PREFLIGHT_RUNNING

public static final TaskStatus PREFLIGHT_RUNNING
Indicates that the pre-flight task is running.


DEPLOYMENT_RUNNING

public static final TaskStatus DEPLOYMENT_RUNNING
Indicates that the deployment task is running.


COMPLETE

public static final TaskStatus COMPLETE
Indicates that the task has completed.


COMPLETE_WARNINGS

public static final TaskStatus COMPLETE_WARNINGS
Indicates that the task has completed with warnings.


INCOMPLETE_ABORT

public static final TaskStatus INCOMPLETE_ABORT
Indicates that the task is incompleted and was aborted.


INCOMPLETE_TIMEOUT

public static final TaskStatus INCOMPLETE_TIMEOUT
Indicates that the task is incompleted and was timed out.


INCOMPLETE_ERROR

public static final TaskStatus INCOMPLETE_ERROR
Indicates that the task is incompleted with errors.