Back to project page Android-Perka.
The source code is released under:
Apache License
If you think the Android project Android-Perka 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.michaelbarany.perka; //from w w w . j av a 2 s. c o m import retrofit.Callback; import retrofit.client.Response; import retrofit.http.Body; import retrofit.http.POST; public interface ApplyService { @POST("/apply") void index(@Body ApplicationForm form, Callback<Response> callback); }