blob: c61d6d2ea11fea8825fdd5c90a476c45df0507ab [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
* </copyright>
*/
package org.eclipse.bpmn2;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Choreography Activity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpmn2.ChoreographyActivity#getParticipantRefs <em>Participant Refs</em>}</li>
* <li>{@link org.eclipse.bpmn2.ChoreographyActivity#getCorrelationKeys <em>Correlation Keys</em>}</li>
* <li>{@link org.eclipse.bpmn2.ChoreographyActivity#getInitiatingParticipantRef <em>Initiating Participant Ref</em>}</li>
* <li>{@link org.eclipse.bpmn2.ChoreographyActivity#getLoopType <em>Loop Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpmn2.Bpmn2Package#getChoreographyActivity()
* @model abstract="true"
* extendedMetaData="name='tChoreographyActivity' kind='elementOnly'"
* @generated
*/
public interface ChoreographyActivity extends FlowNode {
/**
* Returns the value of the '<em><b>Participant Refs</b></em>' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.Participant}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Participant Refs</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Participant Refs</em>' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getChoreographyActivity_ParticipantRefs()
* @model lower="2" ordered="false"
* extendedMetaData="kind='element' name='participantRef' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
List<Participant> getParticipantRefs();
/**
* Returns the value of the '<em><b>Correlation Keys</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.bpmn2.CorrelationKey}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Correlation Keys</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Correlation Keys</em>' containment reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getChoreographyActivity_CorrelationKeys()
* @model containment="true" ordered="false"
* extendedMetaData="kind='element' name='correlationKey' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
List<CorrelationKey> getCorrelationKeys();
/**
* Returns the value of the '<em><b>Initiating Participant Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Initiating Participant Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Initiating Participant Ref</em>' reference.
* @see #setInitiatingParticipantRef(Participant)
* @see org.eclipse.bpmn2.Bpmn2Package#getChoreographyActivity_InitiatingParticipantRef()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='initiatingParticipantRef'"
* @generated
*/
Participant getInitiatingParticipantRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ChoreographyActivity#getInitiatingParticipantRef <em>Initiating Participant Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Initiating Participant Ref</em>' reference.
* @see #getInitiatingParticipantRef()
* @generated
*/
void setInitiatingParticipantRef(Participant value);
/**
* Returns the value of the '<em><b>Loop Type</b></em>' attribute.
* The default value is <code>"None"</code>.
* The literals are from the enumeration {@link org.eclipse.bpmn2.ChoreographyLoopType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Loop Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Loop Type</em>' attribute.
* @see org.eclipse.bpmn2.ChoreographyLoopType
* @see #setLoopType(ChoreographyLoopType)
* @see org.eclipse.bpmn2.Bpmn2Package#getChoreographyActivity_LoopType()
* @model default="None" ordered="false"
* extendedMetaData="kind='attribute' name='loopType'"
* @generated
*/
ChoreographyLoopType getLoopType();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ChoreographyActivity#getLoopType <em>Loop Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Loop Type</em>' attribute.
* @see org.eclipse.bpmn2.ChoreographyLoopType
* @see #getLoopType()
* @generated
*/
void setLoopType(ChoreographyLoopType value);
} // ChoreographyActivity