Uses of Class
com.unica.publicapi.plan.api.TaskStateEnum

Packages that use TaskStateEnum
com.unica.publicapi.plan.api   
 

Uses of TaskStateEnum in com.unica.publicapi.plan.api
 

Fields in com.unica.publicapi.plan.api declared as TaskStateEnum
static TaskStateEnum TaskStateEnum.ACTIVE
           
static TaskStateEnum TaskStateEnum.DISABLED
           
static TaskStateEnum TaskStateEnum.FINISHED
           
static TaskStateEnum TaskStateEnum.PENDING
           
static TaskStateEnum TaskStateEnum.SKIPPED
           
 

Methods in com.unica.publicapi.plan.api that return TaskStateEnum
static TaskStateEnum TaskStateEnum.valueOf(java.lang.String name)
           
static TaskStateEnum[] TaskStateEnum.values()
           
 

Methods in com.unica.publicapi.plan.api with parameters of type TaskStateEnum
 void IPlanAPI.transitionWorkflowTaskStateByHandle(IExecutionContext context, Handle hTask, TaskStateEnum taskStateEnum, java.lang.String comments)
          Overloaded API with comments parameters.
 void IPlanAPI.transitionWorkflowTaskStateByName(IExecutionContext context, java.lang.String projectCode, java.lang.String taskName, TaskStateEnum taskStateEnum)
          Deprecated. use @see Finds the workflow task that has the specified project code and task name and transitions its state to the new state.

Convenience API; identical to making the following API calls:

  1. findProjectByAttribute() using the code attribute name and the code parameter value
  2. findWorkflowTaskByAttribute() using the project handle above with a name attribute equal to the name parameter above
  3. updateAttributes() for the task returned above, using the state parameter as the uapStateEnum attribute value.