All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prerna.util.linotp.LinOTPResponse Maven / Gradle / Ivy

The newest version!
package prerna.util.linotp;

import java.util.HashMap;
import java.util.Map;

import prerna.auth.AccessToken;

public class LinOTPResponse {

	private Map returnMap = null;
	private AccessToken token = null;
	private int responseCode = -1;
	
	public Map getReturnMap() {
		if(returnMap == null) {
			returnMap = new HashMap<>();
		}
		return returnMap;
	}
	
	public void setReturnMap(Map returnMap) {
		this.returnMap = returnMap;
	}
	
	public AccessToken getToken() {
		return token;
	}
	
	public void setToken(AccessToken token) {
		this.token = token;
	}
	
	public int getResponseCode() {
		return responseCode;
	}
	
	public void setResponseCode(int responseCode) {
		this.responseCode = responseCode;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy