/** * <copyright> * </copyright> * * $Id$ */ package org.talend.core.model.properties; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Exchange User</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.ExchangeUser#getUsername <em>Username</em>}</li> * <li>{@link org.talend.core.model.properties.ExchangeUser#getLogin <em>Login</em>}</li> * <li>{@link org.talend.core.model.properties.ExchangeUser#getPassword <em>Password</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getExchangeUser() * @model * @generated */ public interface ExchangeUser extends EObject { /** * Returns the value of the '<em><b>Username</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Username</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Username</em>' attribute. * @see #setUsername(String) * @see org.talend.core.model.properties.PropertiesPackage#getExchangeUser_Username() * @model * @generated */ String getUsername(); /** * Sets the value of the '{@link org.talend.core.model.properties.ExchangeUser#getUsername <em>Username</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Username</em>' attribute. * @see #getUsername() * @generated */ void setUsername(String value); /** * Returns the value of the '<em><b>Login</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Login</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Login</em>' attribute. * @see #setLogin(String) * @see org.talend.core.model.properties.PropertiesPackage#getExchangeUser_Login() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * @generated */ String getLogin(); /** * Sets the value of the '{@link org.talend.core.model.properties.ExchangeUser#getLogin <em>Login</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Login</em>' attribute. * @see #getLogin() * @generated */ void setLogin(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.talend.core.model.properties.PropertiesPackage#getExchangeUser_Password() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * @generated */ String getPassword(); /** * Sets the value of the '{@link org.talend.core.model.properties.ExchangeUser#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); } // ExchangeUser