com.ibm.task.api

Interface EscalationChain

All Superinterfaces:
java.io.Serializable

  1. public interface EscalationChain
  2. extends java.io.Serializable
Describes an escalation chain.
Since:
7.0

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. int
getActivationState()
Returns the activation state of the escalation chain.
  1. Escalation
getEscalation(java.lang.String escalationName)
Returns the named escalation instance in the escalation chain.
  1. java.util.List
getEscalations()
Returns the ordered list of escalations in the escalation chain.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getActivationState

  1. int getActivationState()
Returns the activation state of the escalation chain.
Returns:
The activation state for the escalation chain. Possible activation states are ready, running, claimed, and waiting-for-subtasks. See the definitions on the escalation object.

getEscalations

  1. java.util.List getEscalations()
Returns the ordered list of escalations in the escalation chain.
Returns:
The ordered list of escalations in the chain. The list may be empty, but not null.

getEscalation

  1. Escalation getEscalation(java.lang.String escalationName)
Returns the named escalation instance in the escalation chain.
Parameters:
escalationName - The name of the requested escalation.
Returns:
The escalation instance or null if not found.