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

com.launchkey.sdk.http.JSONResponse Maven / Gradle / Ivy

Go to download

SDK for interacting with the LaunchKey distributed authentication and authorization platform

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy