use of org.camunda.bpm.model.bpmn.instance.camunda.CamundaInputOutput in project camunda-bpmn-model by camunda.
the class AbstractActivityBuilder method camundaOutputParameter.
/**
* Creates a new camunda output parameter extension element with the
* given name and value.
*
* @param name the name of the output parameter
* @param value the value of the output parameter
* @return the builder object
*/
public B camundaOutputParameter(String name, String value) {
CamundaInputOutput camundaInputOutput = getCreateSingleExtensionElement(CamundaInputOutput.class);
CamundaOutputParameter camundaOutputParameter = createChild(camundaInputOutput, CamundaOutputParameter.class);
camundaOutputParameter.setCamundaName(name);
camundaOutputParameter.setTextContent(value);
return myself;
}
use of org.camunda.bpm.model.bpmn.instance.camunda.CamundaInputOutput in project camunda-bpmn-model by camunda.
the class AbstractActivityBuilder method camundaInputParameter.
/**
* Creates a new camunda input parameter extension element with the
* given name and value.
*
* @param name the name of the input parameter
* @param value the value of the input parameter
* @return the builder object
*/
public B camundaInputParameter(String name, String value) {
CamundaInputOutput camundaInputOutput = getCreateSingleExtensionElement(CamundaInputOutput.class);
CamundaInputParameter camundaInputParameter = createChild(camundaInputOutput, CamundaInputParameter.class);
camundaInputParameter.setCamundaName(name);
camundaInputParameter.setTextContent(value);
return myself;
}
use of org.camunda.bpm.model.bpmn.instance.camunda.CamundaInputOutput in project camunda-bpmn-model by camunda.
the class AbstractEventBuilder method camundaOutputParameter.
/**
* Creates a new camunda output parameter extension element with the
* given name and value.
*
* @param name the name of the output parameter
* @param value the value of the output parameter
* @return the builder object
*/
public B camundaOutputParameter(String name, String value) {
CamundaInputOutput camundaInputOutput = getCreateSingleExtensionElement(CamundaInputOutput.class);
CamundaOutputParameter camundaOutputParameter = createChild(camundaInputOutput, CamundaOutputParameter.class);
camundaOutputParameter.setCamundaName(name);
camundaOutputParameter.setTextContent(value);
return myself;
}
Aggregations