com.ibm.task.api
Interface AutoDeletionMode
- public interface AutoDeletionMode
TaskTemplate.getAutoDeletionMode()
or Task.getAutoDeletionMode()
.
Since:
6.1
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
|
ON_COMPLETION
Symbolic constant that indicates that a task instance is automatically deleted when
it reaches an end execution state.
|
|
ON_SUCCESSFUL_COMPLETION
Symbolic constant that indicates that a task instance is automatically deleted when
it is completed successfully.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
ON_COMPLETION
- static final int ON_COMPLETION
See Also:
ON_SUCCESSFUL_COMPLETION
- static final int ON_SUCCESSFUL_COMPLETION
Symbolic constant that indicates that a task instance is automatically deleted when
it is completed successfully. If not completed successfully, it is kept to allow for
failing analysis.
See Also:
End execution states are STATE_FINISHED, STATE_FAILED, STATE_TERMINATED, or STATE_EXPIRED.