Add PasswordCredentialsObject class

Class needed to model GetTokenRequest
This commit is contained in:
Ricardo Carrillo Cruz 2013-04-16 11:37:16 +02:00
parent fef0b19d68
commit 7ff2045433
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
package com.rcarrillocruz.android.openstackdroid;
public class PasswordCredentialsObject {
private String username;
private String password;
public PasswordCredentialsObject(String username, String password) {
super();
this.username = username;
this.password = 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;
}
}