All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yaoqiang.bpmn.model.elements.activities.SendTask Maven / Gradle / Ivy

package org.yaoqiang.bpmn.model.elements.activities;

import org.yaoqiang.bpmn.model.elements.XMLAttribute;
import org.yaoqiang.bpmn.model.elements.core.common.FlowElements;

/**
 * SendTask
 * 
 * @author Shi Yaoqiang([email protected])
 */
public class SendTask extends Task {

	private static final long serialVersionUID = -5599534715440292963L;

	public SendTask(String name) {
		this((FlowElements) null);
		setName(name);
	}

	public SendTask(FlowElements parent) {
		super(parent, "sendTask");
	}

	protected void fillStructure() {
		XMLAttribute attrImplementation = new XMLAttribute(this, "implementation", "##WebService");
		XMLAttribute attrMessageRef = new XMLAttribute(this, "messageRef");
		XMLAttribute attrOperationRef = new XMLAttribute(this, "operationRef");

		super.fillStructure();
		add(attrImplementation);
		add(attrMessageRef);
		add(attrOperationRef);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy