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

org.yaoqiang.bpmn.model.elements.choreography.GlobalChoreographyTask Maven / Gradle / Ivy

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

import org.yaoqiang.bpmn.model.elements.XMLAttribute;
import org.yaoqiang.bpmn.model.elements.core.foundation.RootElements;

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

	private static final long serialVersionUID = 5659533615735216546L;

	public GlobalChoreographyTask(RootElements parent) {
		super(parent, "globalChoreographyTask");
	}

	protected void fillStructure() {
		XMLAttribute attrInitiatingParticipantRef = new XMLAttribute(this, "initiatingParticipantRef");

		super.fillStructure();
		add(attrInitiatingParticipantRef);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy