Class TChoreographyActivity
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TFlowElement
-
- org.omg.spec.bpmn.model.TFlowNode
-
- org.omg.spec.bpmn.model.TChoreographyActivity
-
- Direct Known Subclasses:
TCallChoreography
,TChoreographyTask
,TSubChoreography
public abstract class TChoreographyActivity extends TFlowNode
Java class for tChoreographyActivity complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tChoreographyActivity"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFlowNode"> <sequence> <element name="participantRef" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="2"/> <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}correlationKey" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="initiatingParticipantRef" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" /> <attribute name="loopType" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tChoreographyLoopType" default="None" /> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TCorrelationKey>
correlationKey
protected QName
initiatingParticipantRef
protected TChoreographyLoopType
loopType
protected List<QName>
participantRef
-
Fields inherited from class org.omg.spec.bpmn.model.TFlowElement
auditing, categoryValueRef, monitoring, name
-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TChoreographyActivity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TCorrelationKey>
getCorrelationKey()
Gets the value of the correlationKey property.QName
getInitiatingParticipantRef()
Gets the value of the initiatingParticipantRef property.TChoreographyLoopType
getLoopType()
Gets the value of the loopType property.List<QName>
getParticipantRef()
Gets the value of the participantRef property.void
setInitiatingParticipantRef(QName value)
Sets the value of the initiatingParticipantRef property.void
setLoopType(TChoreographyLoopType value)
Sets the value of the loopType property.-
Methods inherited from class org.omg.spec.bpmn.model.TFlowNode
getIncoming, getOutgoing
-
Methods inherited from class org.omg.spec.bpmn.model.TFlowElement
getAuditing, getCategoryValueRef, getMonitoring, getName, setAuditing, setMonitoring, setName
-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Field Detail
-
correlationKey
protected List<TCorrelationKey> correlationKey
-
initiatingParticipantRef
protected QName initiatingParticipantRef
-
loopType
protected TChoreographyLoopType loopType
-
-
Method Detail
-
getParticipantRef
public List<QName> getParticipantRef()
Gets the value of the participantRef 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 participantRef property.For example, to add a new item, do as follows:
getParticipantRef().add(newItem);
Objects of the following type(s) are allowed in the list
QName
-
getCorrelationKey
public List<TCorrelationKey> getCorrelationKey()
Gets the value of the correlationKey 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 correlationKey property.For example, to add a new item, do as follows:
getCorrelationKey().add(newItem);
Objects of the following type(s) are allowed in the list
TCorrelationKey
-
getInitiatingParticipantRef
public QName getInitiatingParticipantRef()
Gets the value of the initiatingParticipantRef property.- Returns:
- possible object is
QName
-
setInitiatingParticipantRef
public void setInitiatingParticipantRef(QName value)
Sets the value of the initiatingParticipantRef property.- Parameters:
value
- allowed object isQName
-
getLoopType
public TChoreographyLoopType getLoopType()
Gets the value of the loopType property.- Returns:
- possible object is
TChoreographyLoopType
-
setLoopType
public void setLoopType(TChoreographyLoopType value)
Sets the value of the loopType property.- Parameters:
value
- allowed object isTChoreographyLoopType
-
-