Interface IWorkItemLifecycleEvent
-
public interface IWorkItemLifecycleEventEncapsulates all information pertaining to a "work item" at a specific point in its lifecycle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLifecycleDetails()Returns details related to the currentIWorkItemLifecyclePhaseStringgetSourceHostIp()Returns the ip of the host where the event originated.StringgetSourceHostName()Returns the hostname of the host where the event originated.DategetSourceTimestamp()Returns theDatewhen the event occured.StringgetWorkItemDetails()Returns the work item details.IWorkItemLifecyclePhasegetWorkItemLifecyclePhase()Returns the currentIWorkItemLifecyclePhasefor the work item.StringgetWorkItemUid()Returns the unique id of a work item.
-
-
-
Method Detail
-
getWorkItemUid
String getWorkItemUid()
Returns the unique id of a work item.- Returns:
- the unique id of a work item
-
getWorkItemDetails
String getWorkItemDetails()
Returns the work item details.- Returns:
- the work item details
-
getWorkItemLifecyclePhase
IWorkItemLifecyclePhase getWorkItemLifecyclePhase()
Returns the currentIWorkItemLifecyclePhasefor the work item.- Returns:
- the current
IWorkItemLifecyclePhasefor the work item.
-
getLifecycleDetails
String getLifecycleDetails()
Returns details related to the currentIWorkItemLifecyclePhase- Returns:
- details related to the current
IWorkItemLifecyclePhase
-
getSourceTimestamp
Date getSourceTimestamp()
Returns theDatewhen the event occured.- Returns:
- the
Datewhen the event occured.
-
getSourceHostName
String getSourceHostName()
Returns the hostname of the host where the event originated.- Returns:
- the hostname of the host where the event originated.
-
getSourceHostIp
String getSourceHostIp()
Returns the ip of the host where the event originated.- Returns:
- the ip of the host where the event originated.
-
-