Back to project page GitHub-Jobs.
The source code is released under:
Apache License
If you think the Android project GitHub-Jobs 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.nightlynexus.githubjobs; /* w w w .j a v a2 s. c o m*/ import java.util.List; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; public interface JobsListService { @GET("/positions.json") void getJobsList(@Query("description") String description, @Query("location") String location, @Query("page") int page, Callback<List<Job>> cb); @GET("/positions.json") void getJobsList(@Query("description") String description, @Query("location") String location, @Query("full_time") boolean fullTime, @Query("page") int page, Callback<List<Job>> cb); }