blob: 4c09ff533718c0530d9ca6ea04590dedc2008e19 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.commons.net;
/**
* Provides a user name and password.
*
* @author Steffen Pingel
* @since 2.2
* @noextend This class is not intended to be subclassed by clients.
*/
public class AuthenticationCredentials {
private final String userName;
private final String password;
/**
* @param userName
* the user name, must not be null
* @param password
* the password, must not be null
*/
public AuthenticationCredentials(String userName, String password) {
if (userName == null) {
throw new IllegalArgumentException();
}
if (password == null) {
throw new IllegalArgumentException();
}
this.userName = userName;
this.password = password;
}
public String getUserName() {
return userName;
}
public String getPassword() {
return password;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((password == null) ? 0 : password.hashCode());
result = prime * result + ((userName == null) ? 0 : userName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final AuthenticationCredentials other = (AuthenticationCredentials) obj;
if (password == null) {
if (other.password != null) {
return false;
}
} else if (!password.equals(other.password)) {
return false;
}
if (userName == null) {
if (other.userName != null) {
return false;
}
} else if (!userName.equals(other.userName)) {
return false;
}
return true;
}
}