Interface FormDeploymentEntity
-
- All Superinterfaces:
Entity,FormDeployment
- All Known Implementing Classes:
FormDeploymentEntityImpl
public interface FormDeploymentEntity extends FormDeployment, Entity
- Author:
- Tijs Rademakers, Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDeployedArtifact(Object deployedArtifact)voidaddResource(FormResourceEntity resource)<T> List<T>getDeployedArtifacts(Class<T> clazz)Map<String,FormResourceEntity>getResources()booleanisNew()voidsetCategory(String category)voidsetDeploymentTime(Date deploymentTime)voidsetName(String name)voidsetNew(boolean isNew)voidsetParentDeploymentId(String parentDeploymentId)voidsetResources(Map<String,FormResourceEntity> resources)voidsetTenantId(String tenantId)-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.form.api.FormDeployment
getCategory, getDeploymentTime, getId, getName, getParentDeploymentId, getTenantId
-
-
-
-
Method Detail
-
addResource
void addResource(FormResourceEntity resource)
-
getResources
Map<String,FormResourceEntity> getResources()
-
addDeployedArtifact
void addDeployedArtifact(Object deployedArtifact)
-
setName
void setName(String name)
-
setCategory
void setCategory(String category)
-
setTenantId
void setTenantId(String tenantId)
-
setParentDeploymentId
void setParentDeploymentId(String parentDeploymentId)
-
setResources
void setResources(Map<String,FormResourceEntity> resources)
-
setDeploymentTime
void setDeploymentTime(Date deploymentTime)
-
isNew
boolean isNew()
-
setNew
void setNew(boolean isNew)
-
-