Class DecisionDefinitionDeployer
java.lang.Object
org.camunda.bpm.engine.impl.AbstractDefinitionDeployer<DecisionDefinitionEntity>
org.camunda.bpm.engine.impl.dmn.deployer.DecisionDefinitionDeployer
- All Implemented Interfaces:
Deployer
public class DecisionDefinitionDeployer
extends AbstractDefinitionDeployer<DecisionDefinitionEntity>
Deployer
responsible to parse DMN 1.1 XML files and create the proper
DecisionDefinitionEntity
s. Since it uses the result of the
DecisionRequirementsDefinitionDeployer
to avoid duplicated parsing, the DecisionRequirementsDefinitionDeployer must
process the deployment before this cacheDeployer.-
Field Summary
Modifier and TypeFieldDescriptionstatic final String[]
protected static final DecisionLogger
protected DmnTransformer
Fields inherited from class org.camunda.bpm.engine.impl.AbstractDefinitionDeployer
DIAGRAM_SUFFIXES, idGenerator
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
addDefinitionToDeploymentCache
(DeploymentCache deploymentCache, DecisionDefinitionEntity definition) Add a definition to the deployment cacheprotected DecisionDefinitionEntity
findDefinitionByDeploymentAndKey
(String deploymentId, String definitionKey) Find a definition entity by deployment id and definition key.protected DecisionRequirementsDefinitionEntity
findDeployedDrdForResource
(DeploymentEntity deployment, String resourceName) protected DecisionDefinitionEntity
findLatestDefinitionByKeyAndTenantId
(String definitionKey, String tenantId) Find the last deployed definition entity by definition key and tenant id.protected DecisionDefinitionManager
protected String[]
protected void
persistDefinition
(DecisionDefinitionEntity definition) Persist definition entity into the database.void
setTransformer
(DmnTransformer transformer) protected List<DecisionDefinitionEntity>
transformDefinitions
(DeploymentEntity deployment, ResourceEntity resource, Properties properties) Transform the resource entity into definition entities.Methods inherited from class org.camunda.bpm.engine.impl.AbstractDefinitionDeployer
definitionAddedToDeploymentCache, deploy, ensureNoDuplicateDefinitionKeys, generateDefinitionId, getCommandContext, getDefinitionDiagramResourceName, getDeploymentCache, getDiagramResourceForDefinition, getDiagramSuffixes, getGeneralDiagramResourceName, getIdGenerator, getNextVersion, getProcessEngineConfiguration, handlePersistedDefinition, isResourceHandled, loadDefinitions, parseDefinitionResources, persistDefinitions, persistedDefinitionLoaded, postProcessDefinitions, registerDefinition, setIdGenerator, stripDefinitionFileSuffix, transformResource, updateDefinitionByLatestDefinition, updateDefinitionByPersistedDefinition
-
Field Details
-
LOG
-
DMN_RESOURCE_SUFFIXES
-
transformer
-
-
Constructor Details
-
DecisionDefinitionDeployer
public DecisionDefinitionDeployer()
-
-
Method Details
-
getResourcesSuffixes
- Specified by:
getResourcesSuffixes
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Returns:
- the list of resource suffixes for this cacheDeployer
-
transformDefinitions
protected List<DecisionDefinitionEntity> transformDefinitions(DeploymentEntity deployment, ResourceEntity resource, Properties properties) Description copied from class:AbstractDefinitionDeployer
Transform the resource entity into definition entities.- Specified by:
transformDefinitions
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Parameters:
deployment
- the deployment the resources belongs toresource
- the resource to transform- Returns:
- a list of transformed definition entities
-
findDeployedDrdForResource
protected DecisionRequirementsDefinitionEntity findDeployedDrdForResource(DeploymentEntity deployment, String resourceName) -
findDefinitionByDeploymentAndKey
protected DecisionDefinitionEntity findDefinitionByDeploymentAndKey(String deploymentId, String definitionKey) Description copied from class:AbstractDefinitionDeployer
Find a definition entity by deployment id and definition key.- Specified by:
findDefinitionByDeploymentAndKey
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Parameters:
deploymentId
- the deployment iddefinitionKey
- the definition key- Returns:
- the corresponding definition entity or null if non is found
-
findLatestDefinitionByKeyAndTenantId
protected DecisionDefinitionEntity findLatestDefinitionByKeyAndTenantId(String definitionKey, String tenantId) Description copied from class:AbstractDefinitionDeployer
Find the last deployed definition entity by definition key and tenant id.- Specified by:
findLatestDefinitionByKeyAndTenantId
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Returns:
- the corresponding definition entity or null if non is found
-
persistDefinition
Description copied from class:AbstractDefinitionDeployer
Persist definition entity into the database.- Specified by:
persistDefinition
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Parameters:
definition
- the definition entity
-
addDefinitionToDeploymentCache
protected void addDefinitionToDeploymentCache(DeploymentCache deploymentCache, DecisionDefinitionEntity definition) Description copied from class:AbstractDefinitionDeployer
Add a definition to the deployment cache- Specified by:
addDefinitionToDeploymentCache
in classAbstractDefinitionDeployer<DecisionDefinitionEntity>
- Parameters:
deploymentCache
- the deployment cachedefinition
- the definition to add
-
getDecisionDefinitionManager
-
getTransformer
-
setTransformer
-