blob: 6838a4fef68aae48e86075f93a57aa0a5c631302 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.internal.ui.security;
/**
* Keeps user and password strings.
*/
public class Authentication {
protected String user;
protected String password;
public Authentication(String user, String password){
this.user = user;
this.password = password;
}
/**
* @return Returns the password.
*/
public String getPassword() {
return password;
}
/**
* @return Returns the user.
*/
public String getUser() {
return user;
}
}