2017-11-15 15:13:07 +00:00
|
|
|
package Interfaces;
|
|
|
|
|
2017-11-15 21:53:52 +00:00
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2017-11-15 15:13:07 +00:00
|
|
|
public interface Callback {
|
|
|
|
|
2017-11-15 21:53:52 +00:00
|
|
|
public void onSuccess(JSONObject response);
|
|
|
|
|
|
|
|
public void onError();
|
2017-11-15 15:13:07 +00:00
|
|
|
|
|
|
|
}
|