Package com.flowable.workobject.api
Interface WorkObjectDeployment
- All Known Subinterfaces:
WorkObjectDeploymentEntity
- All Known Implementing Classes:
WorkObjectDeploymentEntityImpl
public interface WorkObjectDeployment
Represents a deployment that is already present in the process repository.
A deployment is a container for resources such as process definitions, images, forms, etc.
When a deployment is 'deployed' through the
RuntimeService, the Flowable engine will recognize certain of such resource types and act upon them (eg process definitions
will be parsed to an executable Java artifact).
To create a Deployment, use the DeploymentBuilder. A Deployment on itself is a read-only object and its content cannot be changed after deployment
(hence the builder that needs to be used).- Author:
- Tijs Rademakers, Joram Barrez
-
Method Summary
Modifier and Type Method Description java.lang.StringgetCategory()java.util.DategetDeploymentTime()java.lang.StringgetId()java.lang.StringgetName()java.lang.StringgetParentDeploymentId()java.lang.StringgetTenantId()
-
Method Details
-
getId
java.lang.String getId() -
getName
java.lang.String getName() -
getDeploymentTime
java.util.Date getDeploymentTime() -
getCategory
java.lang.String getCategory() -
getTenantId
java.lang.String getTenantId() -
getParentDeploymentId
java.lang.String getParentDeploymentId()
-