use of org.camunda.bpm.engine.impl.el.FixedValue in project camunda-bpm-platform by camunda.
the class ItemHandler method getFixedValue.
protected FixedValue getFixedValue(CamundaField field) {
CamundaString strg = field.getCamundaString();
String value = null;
if (strg != null) {
value = strg.getTextContent();
}
if (value == null) {
value = field.getCamundaStringValue();
}
if (value != null) {
return new FixedValue(value);
}
return null;
}
use of org.camunda.bpm.engine.impl.el.FixedValue in project camunda-bpm-platform by camunda.
the class ProcessEngineTestRule method defaultManualActivation.
public Object defaultManualActivation() {
Expression expression = new FixedValue(true);
CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
return caseControlRule;
}
use of org.camunda.bpm.engine.impl.el.FixedValue in project camunda-bpm-platform by camunda.
the class PvmTestCase method defaultManualActivation.
public Object defaultManualActivation() {
Expression expression = new FixedValue(true);
CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
return caseControlRule;
}
Aggregations