com.launchkey.sdk.http.JSONHttpCallback 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 interface JSONHttpCallback {
public void onSuccess(JSONObject response);
public void onFailure(int status, JSONObject response);
}