16 lines
352 B
Plaintext
16 lines
352 B
Plaintext
|
package com.cm.utils.net.response;
|
||
|
|
||
|
import org.json.JSONObject;
|
||
|
|
||
|
/**
|
||
|
* Created by Xuer on 2017/3/8.
|
||
|
*/
|
||
|
public abstract class JsonResponseHandler implements ResponseHandler{
|
||
|
public abstract void onSuccess(int statusCode, JSONObject response);
|
||
|
|
||
|
@Override
|
||
|
public void onProgress(long currentBytes, long totalBytes) {
|
||
|
|
||
|
}
|
||
|
}
|