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 a 2 s. com import org.apache.http.Header; import org.json.JSONObject; import android.content.Context; public class RestAPISercieBuilderAdapter<T extends IJsonParsable> implements IRestAPIServiceBuilder<T> { @Override public T getBody() { return null; } @Override public Header[] getHeaders() { return null; } @Override public void onSuccess(JSONObject body) { } @Override public void onFailed(int statusCode, JSONObject body) { } @Override public void onExcpetion(Exception e) { } @Override public void onPostResult(Context act, JSONObject result) { } }