Back to project page u2020.
The source code is released under:
Apache License
If you think the Android project u2020 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.jakewharton.u2020.data.api; //from ww w. j a v a 2 s. c o m import com.jakewharton.u2020.data.api.model.Gallery; import retrofit.http.GET; import retrofit.http.Path; import rx.Observable; public interface GalleryService { @GET("/gallery/{section}/{sort}/{page}") // Observable<Gallery> listGallery( // @Path("section") Section section, // @Path("sort") Sort sort, // @Path("page") int page); }