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

com.sola.instagram.io.RequestResponse Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package com.sola.instagram.io;

import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONTokener;

public class RequestResponse {
	
	String responseString;
	public RequestResponse(String responseAsString) {
		this.responseString = responseAsString;
	}
	
	public JSONObject getJSON() {
		JSONObject res =null;
		try {
			res = new JSONObject(new JSONTokener(getResponseString()));
		} catch (JSONException e) {
			e.printStackTrace();
		}
		return res;
	}

	public String getResponseString() {
		return responseString;
	}

	public void setResponseString(String responseString) {
		this.responseString = responseString;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy