blob: e31a533aa5e925859792edb894f1ad197389be44 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.ivy.util;
import static org.apache.ivy.util.StringUtils.isNullOrEmpty;
import static org.apache.ivy.util.StringUtils.repeat;
/**
*
*/
public class Credentials {
private String realm;
private String host;
private String userName;
private String passwd;
public Credentials(String realm, String host, String userName, String passwd) {
this.realm = realm;
this.host = host;
this.userName = userName;
this.passwd = passwd;
}
public String getHost() {
return host;
}
public String getPasswd() {
return passwd;
}
public String getRealm() {
return realm;
}
public String getUserName() {
return userName;
}
public static String buildKey(String realm, String host) {
if (isNullOrEmpty(realm)) {
return host;
}
return realm + "@" + host;
}
/**
* Return a string that can be used for debug purpose. It contains only stars for each password
* character.
*
* @return String
*/
public String toString() {
return getKey() + " " + getUserName() + "/" + getPasswdAsStars();
}
private String getPasswdAsStars() {
if (passwd == null) {
return null;
}
return repeat("*", passwd.length());
}
public boolean equals(Object o) {
return o instanceof Credentials && getKey().equals(((Credentials) o).getKey());
}
public int hashCode() {
return getKey().hashCode();
}
public String getKey() {
return buildKey(realm, host);
}
}