Interface ProcessInstanceLog
-
public interface ProcessInstanceLogAudit view of process instance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LonggetDuration()Amount of time (in milliseconds) that process instance took to complete.DategetEnd()End date of this process instance, null if process instance is still activeStringgetExternalId()External (optional) identifier associated with this process instanceStringgetIdentity()Identifier of a entity (user) who initiated this process instance.StringgetOutcome()Outcome of the process instance that is providing error information in case process instance completed with an errorLonggetParentProcessInstanceId()Parent process instance id, will be null for top level process instanceStringgetProcessId()Process id of the definitionStringgetProcessInstanceDescription()Description of the process instanceLonggetProcessInstanceId()Process instance identifierStringgetProcessName()Name of the process definitionStringgetProcessVersion()Version of the process definitionDategetStart()Start date of this process instanceIntegergetStatus()Status of the process instance and might be one of: ProcessInstance.STATE_ACTIVE ProcessInstance.STATE_COMPLETED ProcessInstance.STATE_ABORTED ProcessInstance.STATE_SUSPENDED
-
-
-
Method Detail
-
getProcessInstanceId
Long getProcessInstanceId()
Process instance identifier- Returns:
- the
Longvalue
-
getEnd
Date getEnd()
End date of this process instance, null if process instance is still active- Returns:
- the
Datevalue
-
getStatus
Integer getStatus()
Status of the process instance and might be one of:- ProcessInstance.STATE_ACTIVE
- ProcessInstance.STATE_COMPLETED
- ProcessInstance.STATE_ABORTED
- ProcessInstance.STATE_SUSPENDED
- Returns:
- the
Integervalue
-
getParentProcessInstanceId
Long getParentProcessInstanceId()
Parent process instance id, will be null for top level process instance- Returns:
- the
Longvalue
-
getOutcome
String getOutcome()
Outcome of the process instance that is providing error information in case process instance completed with an error- Returns:
- the
Stringvalue
-
getDuration
Long getDuration()
Amount of time (in milliseconds) that process instance took to complete. Available only when process instance is completed.- Returns:
- the
Stringvalue
-
getIdentity
String getIdentity()
Identifier of a entity (user) who initiated this process instance.- Returns:
- the
Stringvalue
-
getExternalId
String getExternalId()
External (optional) identifier associated with this process instance- Returns:
- the
Stringvalue
-
getProcessVersion
String getProcessVersion()
Version of the process definition- Returns:
- the
Stringvalue
-
-