com.ibm.task.api
Interface EscalationChain
All Superinterfaces:
java.io.Serializable
- public interface EscalationChain
- extends java.io.Serializable
Since:
7.0
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getActivationState()
Returns the activation state of the escalation chain.
|
getEscalation(java.lang.String escalationName)
Returns the named escalation instance in the escalation chain.
|
|
|
getEscalations()
Returns the ordered list of escalations in the escalation chain.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
getActivationState
- 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
- java.util.List getEscalations()
Returns the ordered list of escalations in the escalation chain.
Returns:
The ordered list of
escalation
s in the chain. The list may be empty, but not null. getEscalation
- 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.