website.automate.manager.api.client.model.Authentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of manager-api-client Show documentation
Show all versions of manager-api-client Show documentation
Implementation of the automate.website public API.
package website.automate.manager.api.client.model;
public class Authentication {
private String username;
private String password;
private Authentication(String username, String password) {
super();
this.username = username;
this.password = password;
}
public static Authentication of(String username, String password){
return new Authentication(username, password);
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy