/* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.camunda.bpm.model.bpmn.impl.instance; import org.camunda.bpm.model.bpmn.BpmnModelInstance; import org.camunda.bpm.model.bpmn.builder.ScriptTaskBuilder; import org.camunda.bpm.model.bpmn.instance.Script; import org.camunda.bpm.model.bpmn.instance.ScriptTask; import org.camunda.bpm.model.bpmn.instance.Task; import org.camunda.bpm.model.xml.ModelBuilder; import org.camunda.bpm.model.xml.impl.instance.ModelTypeInstanceContext; import org.camunda.bpm.model.xml.type.ModelElementTypeBuilder; import org.camunda.bpm.model.xml.type.attribute.Attribute; import org.camunda.bpm.model.xml.type.child.ChildElement; import org.camunda.bpm.model.xml.type.child.SequenceBuilder; import static org.camunda.bpm.model.bpmn.impl.BpmnModelConstants.*; import static org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.ModelTypeInstanceProvider; /** * The BPMN scriptTask element * * @author Sebastian Menski */ public class ScriptTaskImpl extends TaskImpl implements ScriptTask { protected static Attribute<String> scriptFormatAttribute; protected static ChildElement<Script> scriptChild; /** camunda extensions */ protected static Attribute<String> camundaResultVariableAttribute; protected static Attribute<String> camundaResourceAttribute; public static void registerType(ModelBuilder modelBuilder) { ModelElementTypeBuilder typeBuilder = modelBuilder.defineType(ScriptTask.class, BPMN_ELEMENT_SCRIPT_TASK) .namespaceUri(BPMN20_NS) .extendsType(Task.class) .instanceProvider(new ModelTypeInstanceProvider<ScriptTask>() { public ScriptTask newInstance(ModelTypeInstanceContext instanceContext) { return new ScriptTaskImpl(instanceContext); } }); scriptFormatAttribute = typeBuilder.stringAttribute(BPMN_ATTRIBUTE_SCRIPT_FORMAT) .build(); SequenceBuilder sequenceBuilder = typeBuilder.sequence(); scriptChild = sequenceBuilder.element(Script.class) .build(); /** camunda extensions */ camundaResultVariableAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_RESULT_VARIABLE) .namespace(CAMUNDA_NS) .build(); camundaResourceAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_RESOURCE) .namespace(CAMUNDA_NS) .build(); typeBuilder.build(); } public ScriptTaskImpl(ModelTypeInstanceContext context) { super(context); } @Override public ScriptTaskBuilder builder() { return new ScriptTaskBuilder((BpmnModelInstance) modelInstance, this); } public String getScriptFormat() { return scriptFormatAttribute.getValue(this); } public void setScriptFormat(String scriptFormat) { scriptFormatAttribute.setValue(this, scriptFormat); } public Script getScript() { return scriptChild.getChild(this); } public void setScript(Script script) { scriptChild.setChild(this, script); } /** camunda extensions */ public String getCamundaResultVariable() { return camundaResultVariableAttribute.getValue(this); } public void setCamundaResultVariable(String camundaResultVariable) { camundaResultVariableAttribute.setValue(this, camundaResultVariable); } public String getCamundaResource() { return camundaResourceAttribute.getValue(this); } public void setCamundaResource(String camundaResource) { camundaResourceAttribute.setValue(this, camundaResource); } }