com.launchkey.sdk.http.JSONResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchkey-sdk Show documentation
Show all versions of launchkey-sdk Show documentation
SDK for interacting with the LaunchKey distributed authentication and authorization platform
package com.launchkey.sdk.http;
import net.sf.json.JSONObject;
public class JSONResponse {
private JSONObject json = new JSONObject();
private boolean isSuccess;
public JSONObject getJson() {
return json;
}
public void setJson(JSONObject json) {
this.json = json;
}
public boolean isSuccess() {
return isSuccess;
}
public void setSuccess(boolean success) {
isSuccess = success;
}
}