/** * Copyright (c) 2015-2016 Inria * 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: * - Fawaz Paraiso <fawaz.paraiso@inria.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.hypervisor; import org.occiware.clouddesigner.occi.Resource; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Serial</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getName <em>Name</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getSource <em>Source</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getTarget <em>Target</em>}</li> * </ul> * * @see org.occiware.clouddesigner.occi.hypervisor.HypervisorPackage#getSerial() * @model annotation="OCCIE2Ecore title='Serial resource'" * @generated */ public interface Serial extends Resource { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * The default value is <code>"serial"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.occiware.clouddesigner.occi.hypervisor.HypervisorPackage#getSerial_Name() * @model default="serial" dataType="org.occiware.clouddesigner.occi.String" * annotation="OCCIE2Ecore description='null'" * @generated */ String getName(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Source</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Source</em>' attribute. * @see #setSource(String) * @see org.occiware.clouddesigner.occi.hypervisor.HypervisorPackage#getSerial_Source() * @model dataType="org.occiware.clouddesigner.occi.String" * annotation="OCCIE2Ecore description='null'" * @generated */ String getSource(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getSource <em>Source</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source</em>' attribute. * @see #getSource() * @generated */ void setSource(String value); /** * Returns the value of the '<em><b>Target</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Target</em>' attribute. * @see #setTarget(String) * @see org.occiware.clouddesigner.occi.hypervisor.HypervisorPackage#getSerial_Target() * @model dataType="org.occiware.clouddesigner.occi.String" * annotation="OCCIE2Ecore description='null'" * @generated */ String getTarget(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.hypervisor.Serial#getTarget <em>Target</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target</em>' attribute. * @see #getTarget() * @generated */ void setTarget(String value); } // Serial