Add GetTokenRequest class
This class models the JSON request corresponding to a get token operation
This commit is contained in:
		@@ -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;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user