/* * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others. * 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: * Andre Dietisheim - initial API and implementation * Eike Stepper - maintenance */ package org.eclipse.net4j.util.defs; /** * A representation of the model object 'Credentials Provider Def'. * *

* The following features are supported: *

*

* * @see org.eclipse.net4j.util.defs.Net4jUtilDefsPackage#getCredentialsProviderDef() * @model abstract="true" * @generated */ public interface CredentialsProviderDef extends Def { /** * Returns the value of the 'User ID' attribute. * *

* If the meaning of the 'User ID' attribute isn't clear, there really should be more of a description * here... *

* * @return the value of the 'User ID' attribute. * @see #setUserID(String) * @see org.eclipse.net4j.util.defs.Net4jUtilDefsPackage#getCredentialsProviderDef_UserID() * @model * @generated */ String getUserID(); /** * Sets the value of the '{@link org.eclipse.net4j.util.defs.CredentialsProviderDef#getUserID User ID}' attribute. * * @param value the new value of the 'User ID' attribute. * @see #getUserID() * @generated */ void setUserID(String value); } // CredentialsProviderDef