Package com.adobe.granite.workflow.exec
Interface InboxItem
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInboxItem.PriorityThe possible priority values for InboxItem.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContentPath()Returns the path of the payload's content for this InboxItem if possible.java.lang.StringgetCurrentAssignee()Returns the current assignee, respectively the info in which inbox the InboxItem "resides".java.util.DategetDueTime()Returns the due time of theInboxItem.java.lang.StringgetId()Returns the unique identifier for this InboxItemjava.lang.StringgetItemSubType()Returns the subtype of this InboxItem.java.lang.StringgetItemType()Returns the type of this InboxItem.InboxItem.PrioritygetPriority()Returns the priority of this InboxItem.java.util.DategetProgressBeginTime()Returns the progress begin time of theInboxItemStatusgetStatus()Returns the status of theInboxItem.java.util.DategetTimeEnded()Returns the end time of theInboxItem.java.util.DategetTimeStarted()Returns the start time of theInboxItem.
-
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the unique identifier for this InboxItem- Returns:
- the ID
-
getCurrentAssignee
java.lang.String getCurrentAssignee()
Returns the current assignee, respectively the info in which inbox the InboxItem "resides".- Returns:
- current assignee
-
getTimeStarted
java.util.Date getTimeStarted()
Returns the start time of theInboxItem.- Returns:
- The start time of the
InboxItem.
-
getTimeEnded
java.util.Date getTimeEnded()
Returns the end time of theInboxItem.- Returns:
- The end time of the
InboxItem.
-
getDueTime
java.util.Date getDueTime()
Returns the due time of theInboxItem.- Returns:
- The due time of the
InboxItem
-
getProgressBeginTime
java.util.Date getProgressBeginTime()
Returns the progress begin time of theInboxItem- Returns:
- The progress begin time of the
InboxItem
-
getStatus
Status getStatus()
Returns the status of theInboxItem.- Returns:
- the status of the InboxItem
-
getItemType
java.lang.String getItemType()
Returns the type of this InboxItem. Different implementations of InboxItem should return unique values- Returns:
- the item type
-
getItemSubType
java.lang.String getItemSubType()
Returns the subtype of this InboxItem.- Returns:
- the subtype of this item, or null if there is no subtype.
-
getContentPath
java.lang.String getContentPath()
Returns the path of the payload's content for this InboxItem if possible. If the payload's content is not stored as a path then null is returned.- Returns:
- the payload's content path or null.
-
getPriority
InboxItem.Priority getPriority()
Returns the priority of this InboxItem.- Returns:
- the priority of this InboxItem
-
-