Interface Deployment
-
- All Known Subinterfaces:
DeploymentStatistics
,DeploymentWithDefinitions
,ProcessApplicationDeployment
- All Known Implementing Classes:
DeploymentEntity
,DeploymentStatisticsEntity
,ProcessApplicationDeploymentImpl
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 theRepositoryService
, the engine will recognize certain of such resource types and act upon them (e.g. 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).- Author:
- Tom Baeyens, Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getDeploymentTime()
java.lang.String
getId()
java.lang.String
getName()
java.lang.String
getSource()
java.lang.String
getTenantId()
Returns the id of the tenant this deployment belongs to.
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getName
java.lang.String getName()
-
getDeploymentTime
java.util.Date getDeploymentTime()
-
getSource
java.lang.String getSource()
-
getTenantId
java.lang.String getTenantId()
Returns the id of the tenant this deployment belongs to. Can benull
if the deployment belongs to no single tenant.
-
-