Package com.flowable.core.content.api
Interface DocumentDefinition
- All Known Subinterfaces:
DocumentDefinitionEntity
- All Known Implementing Classes:
DocumentDefinitionEntityImpl
public interface DocumentDefinition
-
Method Summary
Modifier and Type Method Description java.lang.String
getCategory()
java.util.Date
getCreationTime()
Returns the creation timestamp of this data object.java.lang.String
getDeploymentId()
java.lang.String
getId()
java.lang.String
getKey()
java.lang.String
getName()
Returns the name of this action which is also used as the slash action name (e.g.java.lang.String
getResourceName()
java.lang.String
getTenantId()
java.util.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 Details
-
getId
java.lang.String getId() -
getKey
java.lang.String getKey() -
getVersion
int getVersion() -
getDeploymentId
java.lang.String getDeploymentId() -
getTenantId
java.lang.String getTenantId() -
getName
java.lang.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
java.lang.String getResourceName() -
getCategory
java.lang.String getCategory() -
getCreationTime
java.util.Date getCreationTime()Returns the creation timestamp of this data object.- Returns:
- the creation timestamp
-
getUpdateTime
java.util.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
-