Create ConnectionProfile class

This commit is contained in:
Ricardo Carrillo Cruz
2013-04-10 20:03:46 +02:00
parent e360a154b7
commit 72dc7a266a

View File

@@ -0,0 +1,49 @@
package com.rcarrillocruz.android.openstackdroid;
public class ConnectionProfile {
private String username;
private String password;
private String tenantId;
private String connectionURL;
public ConnectionProfile(String username, String password, String tenantId,
String connectionURL) {
super();
this.username = username;
this.password = password;
this.tenantId = tenantId;
this.connectionURL = connectionURL;
}
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;
}
public String getTenantId() {
return tenantId;
}
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
public String getConnectionURL() {
return connectionURL;
}
public void setConnectionURL(String connectionURL) {
this.connectionURL = connectionURL;
}
}