Interface ResourceDefinition
-
- All Known Subinterfaces:
CalledProcessDefinition
,CamundaFormDefinition
,CaseDefinition
,DecisionDefinition
,DecisionRequirementsDefinition
,ProcessDefinition
,ProcessDefinitionStatistics
,ResourceDefinitionEntity<T>
- All Known Implementing Classes:
CalledProcessDefinitionImpl
,CamundaFormDefinitionEntity
,CaseDefinitionEntity
,DecisionDefinitionEntity
,DecisionRequirementsDefinitionEntity
,ProcessDefinitionEntity
,ProcessDefinitionStatisticsEntity
public interface ResourceDefinition
Definition of a resource which was deployed
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCategory()
category name which is derived from the targetNamespace attribute in the definitions elementjava.lang.String
getDeploymentId()
The deployment in which this definition is contained.java.lang.String
getDiagramResourceName()
The diagram resource name for this definition if existjava.lang.Integer
getHistoryTimeToLive()
History time to live.java.lang.String
getId()
unique identifierjava.lang.String
getKey()
unique name for all versions this definitionjava.lang.String
getName()
label used for display purposesjava.lang.String
getResourceName()
name ofthe resource
of this definitionjava.lang.String
getTenantId()
The id of the tenant this definition belongs to.int
getVersion()
version of this definition
-
-
-
Method Detail
-
getId
java.lang.String getId()
unique identifier
-
getCategory
java.lang.String getCategory()
category name which is derived from the targetNamespace attribute in the definitions element
-
getName
java.lang.String getName()
label used for display purposes
-
getKey
java.lang.String getKey()
unique name for all versions this definition
-
getVersion
int getVersion()
version of this definition
-
getResourceName
java.lang.String getResourceName()
name ofthe resource
of this definition
-
getDeploymentId
java.lang.String getDeploymentId()
The deployment in which this definition is contained.
-
getDiagramResourceName
java.lang.String getDiagramResourceName()
The diagram resource name for this definition if exist
-
getTenantId
java.lang.String getTenantId()
The id of the tenant this definition belongs to. Can benull
if the definition belongs to no single tenant.
-
getHistoryTimeToLive
java.lang.Integer getHistoryTimeToLive()
History time to live. Is taken into account in history cleanup.
-
-