Back to project page openpizza-android.
The source code is released under:
MIT License
If you think the Android project openpizza-android 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 de.openpizza.android.service.restapi; /*www . j a v a2s . c om*/ /** * HTTP Methoden die an den Service geschickt werden knnen * * @author flops * * @param <T> * Request Class * @param <S> * Response Class */ public interface RESTServiceCall<T, S> { public void httpGet(String url, String params, RESTServiceHandler<S> handler); public void httpPost(T data, RESTServiceHandler<S> handler); public void httpPut(T data, RESTServiceHandler<S> handler); }