org.omg.spec.bpmn.model.TProcess Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.05 at 10:10:30 AM UTC
//
package org.omg.spec.bpmn.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for tProcess complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tProcess">
* <complexContent>
* <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tCallableElement">
* <sequence>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}auditing" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}monitoring" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}property" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}laneSet" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}flowElement" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}artifact" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}resourceRole" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}correlationSubscription" maxOccurs="unbounded" minOccurs="0"/>
* <element name="supports" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="processType" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tProcessType" default="None" />
* <attribute name="isClosed" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="isExecutable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="definitionalCollaborationRef" type="{http://www.w3.org/2001/XMLSchema}QName" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tProcess", propOrder = {
"auditing",
"monitoring",
"property",
"laneSet",
"flowElement",
"artifact",
"resourceRole",
"correlationSubscription",
"supports"
})
public class TProcess
extends TCallableElement
{
protected TAuditing auditing;
protected TMonitoring monitoring;
protected List property;
protected List laneSet;
@XmlElementRef(name = "flowElement", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false)
protected List> flowElement;
@XmlElementRef(name = "artifact", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false)
protected List> artifact;
@XmlElementRef(name = "resourceRole", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false)
protected List> resourceRole;
protected List correlationSubscription;
protected List supports;
@XmlAttribute(name = "processType")
protected TProcessType processType;
@XmlAttribute(name = "isClosed")
protected Boolean isClosed;
@XmlAttribute(name = "isExecutable")
protected Boolean isExecutable;
@XmlAttribute(name = "definitionalCollaborationRef")
protected QName definitionalCollaborationRef;
/**
* Gets the value of the auditing property.
*
* @return
* possible object is
* {@link TAuditing }
*
*/
public TAuditing getAuditing() {
return auditing;
}
/**
* Sets the value of the auditing property.
*
* @param value
* allowed object is
* {@link TAuditing }
*
*/
public void setAuditing(TAuditing value) {
this.auditing = value;
}
/**
* Gets the value of the monitoring property.
*
* @return
* possible object is
* {@link TMonitoring }
*
*/
public TMonitoring getMonitoring() {
return monitoring;
}
/**
* Sets the value of the monitoring property.
*
* @param value
* allowed object is
* {@link TMonitoring }
*
*/
public void setMonitoring(TMonitoring value) {
this.monitoring = value;
}
/**
* Gets the value of the property property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the property property.
*
*
* For example, to add a new item, do as follows:
*
* getProperty().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TProperty }
*
*
*/
public List getProperty() {
if (property == null) {
property = new ArrayList();
}
return this.property;
}
/**
* Gets the value of the laneSet property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the laneSet property.
*
*
* For example, to add a new item, do as follows:
*
* getLaneSet().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TLaneSet }
*
*
*/
public List getLaneSet() {
if (laneSet == null) {
laneSet = new ArrayList();
}
return this.laneSet;
}
/**
* Gets the value of the flowElement property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the flowElement property.
*
*
* For example, to add a new item, do as follows:
*
* getFlowElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link TSubChoreography }{@code >}
* {@link JAXBElement }{@code <}{@link TServiceTask }{@code >}
* {@link JAXBElement }{@code <}{@link TIntermediateThrowEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TReceiveTask }{@code >}
* {@link JAXBElement }{@code <}{@link TCallChoreography }{@code >}
* {@link JAXBElement }{@code <}{@link TSendTask }{@code >}
* {@link JAXBElement }{@code <}{@link TManualTask }{@code >}
* {@link JAXBElement }{@code <}{@link TSubProcess }{@code >}
* {@link JAXBElement }{@code <}{@link TDataObject }{@code >}
* {@link JAXBElement }{@code <}{@link TSequenceFlow }{@code >}
* {@link JAXBElement }{@code <}{@link TDataStoreReference }{@code >}
* {@link JAXBElement }{@code <}{@link TInclusiveGateway }{@code >}
* {@link JAXBElement }{@code <}{@link TStartEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TUserTask }{@code >}
* {@link JAXBElement }{@code <}{@link TScriptTask }{@code >}
* {@link JAXBElement }{@code <}{@link TChoreographyTask }{@code >}
* {@link JAXBElement }{@code <}{@link TExclusiveGateway }{@code >}
* {@link JAXBElement }{@code <}{@link TAdHocSubProcess }{@code >}
* {@link JAXBElement }{@code <}{@link TImplicitThrowEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TDataObjectReference }{@code >}
* {@link JAXBElement }{@code <}{@link TTransaction }{@code >}
* {@link JAXBElement }{@code <}{@link TIntermediateCatchEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TComplexGateway }{@code >}
* {@link JAXBElement }{@code <}{@link TBusinessRuleTask }{@code >}
* {@link JAXBElement }{@code <}{@link TBoundaryEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TEventBasedGateway }{@code >}
* {@link JAXBElement }{@code <}{@link TEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TParallelGateway }{@code >}
* {@link JAXBElement }{@code <}{@link TEndEvent }{@code >}
* {@link JAXBElement }{@code <}{@link TCallActivity }{@code >}
* {@link JAXBElement }{@code <}{@link TTask }{@code >}
* {@link JAXBElement }{@code <}{@link TFlowElement }{@code >}
*
*
*/
public List> getFlowElement() {
if (flowElement == null) {
flowElement = new ArrayList>();
}
return this.flowElement;
}
/**
* Gets the value of the artifact property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the artifact property.
*
*
* For example, to add a new item, do as follows:
*
* getArtifact().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link TGroup }{@code >}
* {@link JAXBElement }{@code <}{@link TAssociation }{@code >}
* {@link JAXBElement }{@code <}{@link TTextAnnotation }{@code >}
* {@link JAXBElement }{@code <}{@link TArtifact }{@code >}
*
*
*/
public List> getArtifact() {
if (artifact == null) {
artifact = new ArrayList>();
}
return this.artifact;
}
/**
* Gets the value of the resourceRole property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the resourceRole property.
*
*
* For example, to add a new item, do as follows:
*
* getResourceRole().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link TPotentialOwner }{@code >}
* {@link JAXBElement }{@code <}{@link THumanPerformer }{@code >}
* {@link JAXBElement }{@code <}{@link TPerformer }{@code >}
* {@link JAXBElement }{@code <}{@link TResourceRole }{@code >}
*
*
*/
public List> getResourceRole() {
if (resourceRole == null) {
resourceRole = new ArrayList>();
}
return this.resourceRole;
}
/**
* Gets the value of the correlationSubscription property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the correlationSubscription property.
*
*
* For example, to add a new item, do as follows:
*
* getCorrelationSubscription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TCorrelationSubscription }
*
*
*/
public List getCorrelationSubscription() {
if (correlationSubscription == null) {
correlationSubscription = new ArrayList();
}
return this.correlationSubscription;
}
/**
* Gets the value of the supports property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the supports property.
*
*
* For example, to add a new item, do as follows:
*
* getSupports().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link QName }
*
*
*/
public List getSupports() {
if (supports == null) {
supports = new ArrayList();
}
return this.supports;
}
/**
* Gets the value of the processType property.
*
* @return
* possible object is
* {@link TProcessType }
*
*/
public TProcessType getProcessType() {
if (processType == null) {
return TProcessType.NONE;
} else {
return processType;
}
}
/**
* Sets the value of the processType property.
*
* @param value
* allowed object is
* {@link TProcessType }
*
*/
public void setProcessType(TProcessType value) {
this.processType = value;
}
/**
* Gets the value of the isClosed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isIsClosed() {
if (isClosed == null) {
return false;
} else {
return isClosed;
}
}
/**
* Sets the value of the isClosed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsClosed(Boolean value) {
this.isClosed = value;
}
/**
* Gets the value of the isExecutable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsExecutable() {
return isExecutable;
}
/**
* Sets the value of the isExecutable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsExecutable(Boolean value) {
this.isExecutable = value;
}
/**
* Gets the value of the definitionalCollaborationRef property.
*
* @return
* possible object is
* {@link QName }
*
*/
public QName getDefinitionalCollaborationRef() {
return definitionalCollaborationRef;
}
/**
* Sets the value of the definitionalCollaborationRef property.
*
* @param value
* allowed object is
* {@link QName }
*
*/
public void setDefinitionalCollaborationRef(QName value) {
this.definitionalCollaborationRef = value;
}
}