Package com.flowable.core.content.api
Interface DocumentDefinition
-
- All Known Subinterfaces:
DocumentDefinitionEntity
- All Known Implementing Classes:
DocumentDefinitionEntityImpl
public interface DocumentDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCategory()
Date
getCreationTime()
Returns the creation timestamp of this data object.String
getDeploymentId()
String
getId()
String
getKey()
String
getName()
Returns the name of this action which is also used as the slash action name (e.g.String
getResourceName()
String
getTenantId()
Date
getUpdateTime()
Returns the timestamp of the last update of this data object, in most cases where events are immutable, this timestamp is the same as the creation timestamp, but must never benull
.int
getVersion()
-
-
-
Method Detail
-
getId
String getId()
-
getKey
String getKey()
-
getVersion
int getVersion()
-
getDeploymentId
String getDeploymentId()
-
getTenantId
String getTenantId()
-
getName
String getName()
Returns the name of this action which is also used as the slash action name (e.g. name 'foo' would be exposed within a conversation with '/foo' to execute it).- Returns:
- the name of the action
-
getResourceName
String getResourceName()
-
getCategory
String getCategory()
-
getCreationTime
Date getCreationTime()
Returns the creation timestamp of this data object.- Returns:
- the creation timestamp
-
getUpdateTime
Date getUpdateTime()
Returns the timestamp of the last update of this data object, 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
-
-