/****************************************************************************** * Copyright (c) 2009-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.sun.java.xml.ns.jbi; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Service Assembly</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.sun.java.xml.ns.jbi.ServiceAssembly#getIdentification <em>Identification</em>}</li> * <li>{@link com.sun.java.xml.ns.jbi.ServiceAssembly#getServiceUnit <em>Service Unit</em>}</li> * <li>{@link com.sun.java.xml.ns.jbi.ServiceAssembly#getConnections <em>Connections</em>}</li> * </ul> * </p> * * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceAssembly() * @model extendedMetaData="name='ServiceAssembly' kind='elementOnly'" * @generated */ public interface ServiceAssembly extends AbstractExtensibleElement { /** * Returns the value of the '<em><b>Identification</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identification</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>Identification</em>' containment reference. * @see #setIdentification(Identification) * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceAssembly_Identification() * @model containment="true" required="true" * extendedMetaData="kind='element' name='identification' namespace='##targetNamespace'" * @generated */ Identification getIdentification(); /** * Sets the value of the '{@link com.sun.java.xml.ns.jbi.ServiceAssembly#getIdentification <em>Identification</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identification</em>' containment reference. * @see #getIdentification() * @generated */ void setIdentification(Identification value); /** * Returns the value of the '<em><b>Service Unit</b></em>' containment reference list. * The list contents are of type {@link com.sun.java.xml.ns.jbi.ServiceUnit}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Service Unit</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>Service Unit</em>' containment reference list. * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceAssembly_ServiceUnit() * @model containment="true" * extendedMetaData="kind='element' name='service-unit' namespace='##targetNamespace'" * @generated */ EList<ServiceUnit> getServiceUnit(); /** * Returns the value of the '<em><b>Connections</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Connections</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>Connections</em>' containment reference. * @see #setConnections(Connections) * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceAssembly_Connections() * @model containment="true" * extendedMetaData="kind='element' name='connections' namespace='##targetNamespace'" * @generated */ Connections getConnections(); /** * Sets the value of the '{@link com.sun.java.xml.ns.jbi.ServiceAssembly#getConnections <em>Connections</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Connections</em>' containment reference. * @see #getConnections() * @generated */ void setConnections(Connections value); } // ServiceAssembly