Back to project page android-javarx-example.
The source code is released under:
Apache License
If you think the Android project android-javarx-example 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.bnsantos.movies.services; // w w w .ja v a 2s . co m import com.bnsantos.movies.model.MovieResponse; import retrofit.http.GET; import retrofit.http.Path; import retrofit.http.Query; import rx.Observable; /** * Created by bruno on 17/11/14. */ public interface MovieService { @GET("/lists/movies/{type}.json") Observable<MovieResponse> retrieveMovies(@Path("type") String type, @Query("apikey") String token, @Query("page_limit") int limit, @Query("page") int page, @Query("country") String country); }