Back to project page LinuxZaSve_mobile.
The source code is released under:
Apache License
If you think the Android project LinuxZaSve_mobile 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.linuxzasve.mobile.googl; /*from w w w . j a v a 2 s.c o m*/ import com.linuxzasve.mobile.googl.model.GooGlRequest; import com.linuxzasve.mobile.googl.model.GooGlResponse; import retrofit.Callback; import retrofit.http.Body; import retrofit.http.POST; interface GooGlService { @POST("/urlshortener/v1/url") void shortenUrl(@Body GooGlRequest gooGlRequestBody, Callback<GooGlResponse> callback); }