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

se.fortnox.reactivewizard.client.BasicAuthConfig Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package se.fortnox.reactivewizard.client;

public class BasicAuthConfig {
    private String username;
    private String password;

    public BasicAuthConfig() {
    }

    public String getUsername() {
        return username;
    }

    public BasicAuthConfig setUsername(String username) {
        this.username = username;
        return this;
    }

    public String getPassword() {
        return password;
    }

    public BasicAuthConfig setPassword(String password) {
        this.password = password;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy