/** * 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.cloud; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Machine Cloud Sigma</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getProvider <em>Provider</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getEmail <em>Email</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getPassword <em>Password</em>}</li> * </ul> * * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_CloudSigma() * @model annotation="OCCIE2Ecore title='Machine on CloudSigma'" * @generated */ public interface Machine_CloudSigma extends Machine { /** * Returns the value of the '<em><b>Provider</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Provider</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Provider</em>' attribute. * @see #setProvider(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_CloudSigma_Provider() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getProvider(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getProvider <em>Provider</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Provider</em>' attribute. * @see #getProvider() * @generated */ void setProvider(String value); /** * Returns the value of the '<em><b>Email</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Email</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Email</em>' attribute. * @see #setEmail(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_CloudSigma_Email() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getEmail(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getEmail <em>Email</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Email</em>' attribute. * @see #getEmail() * @generated */ void setEmail(String value); /** * Returns the value of the '<em><b>Password</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Password</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Password</em>' attribute. * @see #setPassword(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_CloudSigma_Password() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getPassword(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_CloudSigma#getPassword <em>Password</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Password</em>' attribute. * @see #getPassword() * @generated */ void setPassword(String value); } // Machine_CloudSigma