Back to project page wizapp.
The source code is released under:
MIT License
If you think the Android project wizapp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.wb.wizapp.rest; /* w w w . ja v a2 s. c om*/ import org.apache.http.Header; import org.json.JSONObject; import android.content.Context; public interface IRestAPIServiceBuilder<T extends IJsonParsable> { public T getBody(); public Header[] getHeaders(); public void onSuccess(JSONObject body); public void onFailed(int statusCode, JSONObject body); public void onExcpetion(Exception e); public void onPostResult(Context act, JSONObject result); }