/** * <copyright> * </copyright> * * $Id$ */ package FederationOffice.federationscenarios; import FederationOffice.NamedElement; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Credentials</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link FederationOffice.federationscenarios.Credentials#getUsername <em>Username</em>}</li> * <li>{@link FederationOffice.federationscenarios.Credentials#getPassword <em>Password</em>}</li> * </ul> * </p> * * @see FederationOffice.federationscenarios.FederationscenariosPackage#getCredentials() * @model * @generated */ public interface Credentials extends NamedElement { /** * 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 FederationOffice.federationscenarios.FederationscenariosPackage#getCredentials_Username() * @model * @generated */ String getUsername(); /** * Sets the value of the '{@link FederationOffice.federationscenarios.Credentials#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>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 FederationOffice.federationscenarios.FederationscenariosPackage#getCredentials_Password() * @model * @generated */ String getPassword(); /** * Sets the value of the '{@link FederationOffice.federationscenarios.Credentials#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); } // Credentials