Add GetTokenRequest class

This class models the JSON request corresponding to a get token
operation
This commit is contained in:
Ricardo Carrillo Cruz 2013-04-16 11:36:19 +02:00
parent 6ce2a6637a
commit b28d831ea8
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.rcarrillocruz.android.openstackdroid;
public class GetTokenRequest {
private AuthObject auth;
public GetTokenRequest() {
super();
// TODO Auto-generated constructor stub
}
public GetTokenRequest(AuthObject auth) {
super();
this.auth = auth;
}
public AuthObject getAuth() {
return auth;
}
public void setAuth(AuthObject auth) {
this.auth = auth;
}
}