Package org.activiti.engine.repository
Interface Deployment
-
- All Known Subinterfaces:
DeploymentEntity
- All Known Implementing Classes:
DeploymentEntityImpl
@Internal public interface Deployment
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 theRuntimeService
, the Activiti 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 theDeploymentBuilder
. 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).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCategory()
java.util.Date
getDeploymentTime()
java.lang.String
getId()
java.lang.String
getKey()
java.lang.String
getName()
java.lang.String
getProjectReleaseVersion()
java.lang.String
getTenantId()
java.lang.Integer
getVersion()
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getName
java.lang.String getName()
-
getDeploymentTime
java.util.Date getDeploymentTime()
-
getCategory
java.lang.String getCategory()
-
getKey
java.lang.String getKey()
-
getTenantId
java.lang.String getTenantId()
-
getVersion
java.lang.Integer getVersion()
-
getProjectReleaseVersion
java.lang.String getProjectReleaseVersion()
-
-