blob: 43f835b24433cff7bd80d4f07f756653cd225734 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation, University of Stuttgart (IAAS) and others.
* 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:
* IBM Corporation, University of Stuttgart (IAAS) - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.apache.ode.deploy.model.dd;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>TProvide</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpel.apache.ode.deploy.model.dd.TProvide#getService <em>Service</em>}</li>
* <li>{@link org.eclipse.bpel.apache.ode.deploy.model.dd.TProvide#getPartnerLink <em>Partner Link</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpel.apache.ode.deploy.model.dd.ddPackage#getTProvide()
* @model extendedMetaData="name='tProvide' kind='elementOnly'"
* @generated
*/
public interface TProvide extends EObject {
/**
* Returns the value of the '<em><b>Service</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Service</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Service</em>' containment reference.
* @see #setService(TService)
* @see org.eclipse.bpel.apache.ode.deploy.model.dd.ddPackage#getTProvide_Service()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='service' namespace='##targetNamespace'"
* @generated
*/
TService getService();
/**
* Sets the value of the '{@link org.eclipse.bpel.apache.ode.deploy.model.dd.TProvide#getService <em>Service</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Service</em>' containment reference.
* @see #getService()
* @generated
*/
void setService(TService value);
/**
* Returns the value of the '<em><b>Partner Link</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Partner Link</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Partner Link</em>' attribute.
* @see #setPartnerLink(String)
* @see org.eclipse.bpel.apache.ode.deploy.model.dd.ddPackage#getTProvide_PartnerLink()
* @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
* extendedMetaData="kind='attribute' name='partnerLink'"
* @generated
*/
String getPartnerLink();
/**
* Sets the value of the '{@link org.eclipse.bpel.apache.ode.deploy.model.dd.TProvide#getPartnerLink <em>Partner Link</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Partner Link</em>' attribute.
* @see #getPartnerLink()
* @generated
*/
void setPartnerLink(String value);
} // TProvide