
nl.tweeenveertig.openstack.command.identity.authentication.PasswordCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joss Show documentation
Show all versions of joss Show documentation
Java Client library for OpenStack Storage (Swift)
package nl.tweeenveertig.openstack.command.identity.authentication;
public class PasswordCredentials {
private String username;
private String password;
public PasswordCredentials(final String username, final String password) {
this.username = username;
this.password = password;
}
public String getUsername() {
return this.username;
}
public String getPassword() {
return this.password;
}
}