Uses of Interface
org.camunda.bpm.engine.impl.core.variable.mapping.value.ParameterValueProvider

Packages that use ParameterValueProvider
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.batch   
org.camunda.bpm.engine.impl.bpmn.behavior   
org.camunda.bpm.engine.impl.bpmn.parser   
org.camunda.bpm.engine.impl.cmmn.handler   
org.camunda.bpm.engine.impl.core.model   
org.camunda.bpm.engine.impl.core.variable.mapping   
org.camunda.bpm.engine.impl.core.variable.mapping.value   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.jobexecutor   
org.camunda.bpm.engine.impl.migration.batch   
org.camunda.bpm.engine.impl.scripting   
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl with parameters of type ParameterValueProvider
protected  Long DefaultPriorityProvider.evaluateValueProvider(ParameterValueProvider valueProvider, ExecutionEntity execution, String errorMessageHeading)
          Evaluates a given value provider with the given execution entity to determine the correct value.
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.batch
 

Methods in org.camunda.bpm.engine.impl.batch that return ParameterValueProvider
 ParameterValueProvider BatchSeedJobDeclaration.getJobPriorityProvider()
           
 ParameterValueProvider BatchMonitorJobDeclaration.getJobPriorityProvider()
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.bpmn.behavior
 

Fields in org.camunda.bpm.engine.impl.bpmn.behavior declared as ParameterValueProvider
protected  ParameterValueProvider ExternalTaskActivityBehavior.priorityValueProvider
           
 

Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return ParameterValueProvider
 ParameterValueProvider ExternalTaskActivityBehavior.getPriorityValueProvider()
           
 

Constructors in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type ParameterValueProvider
ExternalTaskActivityBehavior(String topicName, ParameterValueProvider paramValueProvider)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.bpmn.parser
 

Methods in org.camunda.bpm.engine.impl.bpmn.parser that return ParameterValueProvider
protected  ParameterValueProvider BpmnParse.createParameterValueProvider(Object value, ExpressionManager expressionManager)
           
protected static ParameterValueProvider BpmnParseUtil.parseNestedParamValueProvider(Element element)
           
protected static ParameterValueProvider BpmnParseUtil.parseParamValueProvider(Element parameterElement)
           
protected  ParameterValueProvider BpmnParse.parsePriority(Element element, String priorityAttribute)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.cmmn.handler
 

Methods in org.camunda.bpm.engine.impl.cmmn.handler that return ParameterValueProvider
protected  ParameterValueProvider CallingTaskItemHandler.createParameterValueProvider(String value, ExpressionManager expressionManager)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.core.model
 

Classes in org.camunda.bpm.engine.impl.core.model that implement ParameterValueProvider
 class DefaultCallableElementTenantIdProvider
          Default implementation for BaseCallableElement.getTenantIdProvider().
 

Fields in org.camunda.bpm.engine.impl.core.model declared as ParameterValueProvider
protected  ParameterValueProvider CallableElement.businessKeyValueProvider
           
protected  ParameterValueProvider BaseCallableElement.definitionKeyValueProvider
           
protected  ParameterValueProvider CallableElementParameter.sourceValueProvider
           
protected  ParameterValueProvider BaseCallableElement.tenantIdProvider
           
protected  ParameterValueProvider BaseCallableElement.versionValueProvider
           
 

Methods in org.camunda.bpm.engine.impl.core.model that return ParameterValueProvider
 ParameterValueProvider CallableElement.getBusinessKeyValueProvider()
           
 ParameterValueProvider BaseCallableElement.getDefinitionKeyValueProvider()
           
 ParameterValueProvider CallableElementParameter.getSourceValueProvider()
           
 ParameterValueProvider BaseCallableElement.getTenantIdProvider()
           
 ParameterValueProvider BaseCallableElement.getVersionValueProvider()
           
 

Methods in org.camunda.bpm.engine.impl.core.model with parameters of type ParameterValueProvider
 void CallableElement.setBusinessKeyValueProvider(ParameterValueProvider businessKeyValueProvider)
           
 void BaseCallableElement.setDefinitionKeyValueProvider(ParameterValueProvider definitionKey)
           
 void CallableElementParameter.setSourceValueProvider(ParameterValueProvider source)
           
 void BaseCallableElement.setTenantIdProvider(ParameterValueProvider tenantIdProvider)
           
 void BaseCallableElement.setVersionValueProvider(ParameterValueProvider version)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.core.variable.mapping
 

Fields in org.camunda.bpm.engine.impl.core.variable.mapping declared as ParameterValueProvider
protected  ParameterValueProvider IoParameter.valueProvider
          The provider of the parameter value.
 

Methods in org.camunda.bpm.engine.impl.core.variable.mapping that return ParameterValueProvider
 ParameterValueProvider IoParameter.getValueProvider()
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.mapping with parameters of type ParameterValueProvider
 void IoParameter.setValueProvider(ParameterValueProvider valueProvider)
           
 

Constructors in org.camunda.bpm.engine.impl.core.variable.mapping with parameters of type ParameterValueProvider
InputParameter(String name, ParameterValueProvider valueProvider)
           
IoParameter(String name, ParameterValueProvider valueProvider)
           
OutputParameter(String name, ParameterValueProvider valueProvider)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.core.variable.mapping.value
 

Classes in org.camunda.bpm.engine.impl.core.variable.mapping.value that implement ParameterValueProvider
 class ConstantValueProvider
          A constant parameter value.
 class ListValueProvider
           
 class MapValueProvider
           
 class NullValueProvider
           
 

Fields in org.camunda.bpm.engine.impl.core.variable.mapping.value with type parameters of type ParameterValueProvider
protected  List<ParameterValueProvider> ListValueProvider.providerList
           
protected  TreeMap<String,ParameterValueProvider> MapValueProvider.providerMap
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.mapping.value that return types with arguments of type ParameterValueProvider
 List<ParameterValueProvider> ListValueProvider.getProviderList()
           
 TreeMap<String,ParameterValueProvider> MapValueProvider.getProviderMap()
           
 

Method parameters in org.camunda.bpm.engine.impl.core.variable.mapping.value with type arguments of type ParameterValueProvider
 void ListValueProvider.setProviderList(List<ParameterValueProvider> providerList)
           
 void MapValueProvider.setProviderMap(TreeMap<String,ParameterValueProvider> providerMap)
           
 

Constructor parameters in org.camunda.bpm.engine.impl.core.variable.mapping.value with type arguments of type ParameterValueProvider
ListValueProvider(List<ParameterValueProvider> providerList)
           
MapValueProvider(TreeMap<String,ParameterValueProvider> providerMap)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.el
 

Classes in org.camunda.bpm.engine.impl.el that implement ParameterValueProvider
 class ElValueProvider
          Makes it possible to use expression in IoParameter mappings.
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.jobexecutor
 

Fields in org.camunda.bpm.engine.impl.jobexecutor declared as ParameterValueProvider
protected  ParameterValueProvider JobDeclaration.jobPriorityProvider
           
 

Methods in org.camunda.bpm.engine.impl.jobexecutor that return ParameterValueProvider
 ParameterValueProvider JobDeclaration.getJobPriorityProvider()
           
 

Methods in org.camunda.bpm.engine.impl.jobexecutor with parameters of type ParameterValueProvider
 void JobDeclaration.setJobPriorityProvider(ParameterValueProvider jobPriorityProvider)
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.migration.batch
 

Methods in org.camunda.bpm.engine.impl.migration.batch that return ParameterValueProvider
 ParameterValueProvider MigrationBatchJobDeclaration.getJobPriorityProvider()
           
 

Uses of ParameterValueProvider in org.camunda.bpm.engine.impl.scripting
 

Classes in org.camunda.bpm.engine.impl.scripting that implement ParameterValueProvider
 class ScriptValueProvider
          Makes it possible to use scripts in IoParameter mappings.
 



Copyright © 2016 camunda services GmbH. All rights reserved.