blob: bf18b7c1377a18e6eed1ee137ad6cb39a09fb670 [file] [log] [blame]
/**
* Copyright (c) 2000-2009, Intalio Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Intalio Inc. - initial API and implementation
*
*/
package org.eclipse.bpmn;
import javax.xml.namespace.QName;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Send Task</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpmn.SendTask#getImplementation <em>Implementation</em>}</li>
* <li>{@link org.eclipse.bpmn.SendTask#getMessageRef <em>Message Ref</em>}</li>
* <li>{@link org.eclipse.bpmn.SendTask#getOperationRef <em>Operation Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpmn.BpmnPackage#getSendTask()
* @model extendedMetaData="name='tSendTask' kind='elementOnly'"
* @generated
*/
public interface SendTask extends Task {
/**
* Returns the value of the '<em><b>Implementation</b></em>' attribute.
* The default value is <code>"WebService"</code>.
* The literals are from the enumeration {@link org.eclipse.bpmn.ServiceImplementation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Implementation</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Implementation</em>' attribute.
* @see org.eclipse.bpmn.ServiceImplementation
* @see #isSetImplementation()
* @see #unsetImplementation()
* @see #setImplementation(ServiceImplementation)
* @see org.eclipse.bpmn.BpmnPackage#getSendTask_Implementation()
* @model default="WebService" unsettable="true"
* extendedMetaData="kind='attribute' name='implementation'"
* @generated
*/
ServiceImplementation getImplementation();
/**
* Sets the value of the '{@link org.eclipse.bpmn.SendTask#getImplementation <em>Implementation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Implementation</em>' attribute.
* @see org.eclipse.bpmn.ServiceImplementation
* @see #isSetImplementation()
* @see #unsetImplementation()
* @see #getImplementation()
* @generated
*/
void setImplementation(ServiceImplementation value);
/**
* Unsets the value of the '{@link org.eclipse.bpmn.SendTask#getImplementation <em>Implementation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetImplementation()
* @see #getImplementation()
* @see #setImplementation(ServiceImplementation)
* @generated
*/
void unsetImplementation();
/**
* Returns whether the value of the '{@link org.eclipse.bpmn.SendTask#getImplementation <em>Implementation</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Implementation</em>' attribute is set.
* @see #unsetImplementation()
* @see #getImplementation()
* @see #setImplementation(ServiceImplementation)
* @generated
*/
boolean isSetImplementation();
/**
* Returns the value of the '<em><b>Message Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Message Ref</em>' attribute.
* @see #setMessageRef(QName)
* @see org.eclipse.bpmn.BpmnPackage#getSendTask_MessageRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='messageRef'"
* @generated
*/
QName getMessageRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn.SendTask#getMessageRef <em>Message Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message Ref</em>' attribute.
* @see #getMessageRef()
* @generated
*/
void setMessageRef(QName value);
/**
* Returns the value of the '<em><b>Operation Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operation Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Operation Ref</em>' attribute.
* @see #setOperationRef(QName)
* @see org.eclipse.bpmn.BpmnPackage#getSendTask_OperationRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='operationRef'"
* @generated
*/
QName getOperationRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn.SendTask#getOperationRef <em>Operation Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operation Ref</em>' attribute.
* @see #getOperationRef()
* @generated
*/
void setOperationRef(QName value);
} // SendTask