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 . ja v a 2s . co m /** * Callback Interface um ankommende Daten zu verarbeiten * * @author flops * * @param <T> * Response Klasse */ public interface RESTServiceHandler<T> { /** * Callback fr eine abgeschlossene Get Anfrage * * @param response * erhaltene Daten */ public void handleGetResponse(T response); /** * Callback fr eine abgeschlossene Post Anfrage * * @param response * erhaltene Daten */ public void handlePostResponse(T response); /** * Callback fr einen abgeschlossenen PUT Request * * @param response * erhaltene Daten */ public void handlePutResponse(T Response); }