Interface DataObjectInstance
-
- All Known Subinterfaces:
DataObjectInstanceEntity
- All Known Implementing Classes:
DataObjectInstanceEntityImpl
public interface DataObjectInstance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getCreationTime()
Returns the creation timestamp of this data instance.java.lang.String
getCreatorId()
Returns the id of the user creating this data instance.java.lang.String
getDefinitionId()
Returns the id of the data object definition this instance belongs to.java.lang.String
getDefinitionKey()
Returns the key of the data object definition this instance belongs to.java.lang.String
getId()
Returns the unique, technical id for this data object instance.java.lang.String
getLookupId()
Returns the lookup id of this data object instance.java.lang.String
getScopeDefinitionId()
Returns the scope definition id of the case or process definition where this data object is created or used for.java.lang.String
getScopeId()
Returns the scope id of the case or process instance where this data object is created or used for.java.lang.String
getScopeType()
Returns the scope type cmmn or bpmn or another value.java.lang.String
getSubScopeId()
Returns the sub scope id of the plan item or execution where this data object is created or used for.java.lang.String
getUpdaterId()
Returns the optional id of the user having last modified this data instance, if any,null
otherwise.java.util.Date
getUpdateTime()
Returns the timestamp of the last update of this data instance, in most cases where events are immutable, this timestamp is the same as the creation timestamp, but must never benull
.
-
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the unique, technical id for this data object instance. This id will be different from environment to environment.- Returns:
- the id of this data object instance
-
getLookupId
java.lang.String getLookupId()
Returns the lookup id of this data object instance.- Returns:
- the lookup id
-
getDefinitionId
java.lang.String getDefinitionId()
Returns the id of the data object definition this instance belongs to.- Returns:
- the id of the data object definition
-
getDefinitionKey
java.lang.String getDefinitionKey()
Returns the key of the data object definition this instance belongs to.- Returns:
- the key of the data object definition
-
getCreationTime
java.util.Date getCreationTime()
Returns the creation timestamp of this data instance.- Returns:
- the creation timestamp
-
getCreatorId
java.lang.String getCreatorId()
Returns the id of the user creating this data instance.- Returns:
- the id of the creation user
-
getUpdateTime
java.util.Date getUpdateTime()
Returns the timestamp of the last update of this data instance, in most cases where events are immutable, this timestamp is the same as the creation timestamp, but must never benull
.- Returns:
- the timestamp of the last update / modification of this data object
-
getUpdaterId
java.lang.String getUpdaterId()
Returns the optional id of the user having last modified this data instance, if any,null
otherwise.- Returns:
- the optional id of the user having last updated this data instance
-
getScopeId
java.lang.String getScopeId()
Returns the scope id of the case or process instance where this data object is created or used for.- Returns:
- the scope id
-
getSubScopeId
java.lang.String getSubScopeId()
Returns the sub scope id of the plan item or execution where this data object is created or used for.- Returns:
- the sub scope id
-
getScopeType
java.lang.String getScopeType()
Returns the scope type cmmn or bpmn or another value.- Returns:
- the scope type
-
getScopeDefinitionId
java.lang.String getScopeDefinitionId()
Returns the scope definition id of the case or process definition where this data object is created or used for.- Returns:
- the scope definition id
-
-