All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ngeor.yak4j.Credentials Maven / Gradle / Ivy

There is a newer version: 0.13.1
Show newest version
package com.github.ngeor.yak4j;

import java.util.Objects;

/**
 * Username and password for basic authentication.
 */
public class Credentials {
    private final String username;
    private final String password;

    /**
     * Creates an instance of this class.
     * @param username The username.
     * @param password The password.
     */
    public Credentials(String username, String password) {
        if (username == null || username.isEmpty()) {
            throw new IllegalArgumentException("username cannot be empty");
        }

        if (password == null || password.isEmpty()) {
            throw new IllegalArgumentException("password cannot be empty");
        }

        this.username = username;
        this.password = password;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }

    @Override
    public boolean equals(Object o) {
        if (!(o instanceof Credentials)) {
            return false;
        }

        Credentials that = (Credentials) o;
        return Objects.equals(username, that.username)
            && Objects.equals(password, that.password);
    }

    @Override
    public int hashCode() {
        return Objects.hash(username, password);
    }

    @Override
    public String toString() {
        return "Credentials{"
            + "username='" + username + '\''
            + ", password='" + password + '\''
            + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy