
nl.tweeenveertig.openstack.client.factory.AccountConfig 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.client.factory;
public class AccountConfig {
private String tenant;
private String username;
private String password;
private String authUrl;
private boolean mock;
public void setTenant(String tenant) {
this.tenant = tenant;
}
public String getTenant() {
return tenant;
}
public void setUsername(String username) {
this.username = username;
}
public String getUsername() {
return username;
}
public void setPassword(String password) {
this.password = password;
}
public String getPassword() {
return password;
}
public void setAuthUrl(String authUrl) {
this.authUrl = authUrl;
}
public String getAuthUrl() {
return authUrl;
}
public void setMock(boolean mock) {
this.mock = mock;
}
public boolean isMock() {
return mock;
}
}