/****************************************************************************** * 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; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Service Unit</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.sun.java.xml.ns.jbi.ServiceUnit#getIdentification <em>Identification</em>}</li> * <li>{@link com.sun.java.xml.ns.jbi.ServiceUnit#getTarget <em>Target</em>}</li> * </ul> * </p> * * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceUnit() * @model extendedMetaData="name='ServiceUnit' kind='elementOnly'" * @generated */ public interface ServiceUnit 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#getServiceUnit_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.ServiceUnit#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>Target</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target</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>Target</em>' containment reference. * @see #setTarget(Target) * @see com.sun.java.xml.ns.jbi.JbiPackage#getServiceUnit_Target() * @model containment="true" required="true" * extendedMetaData="kind='element' name='target' namespace='##targetNamespace'" * @generated */ Target getTarget(); /** * Sets the value of the '{@link com.sun.java.xml.ns.jbi.ServiceUnit#getTarget <em>Target</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target</em>' containment reference. * @see #getTarget() * @generated */ void setTarget(Target value); } // ServiceUnit