Back to project page TwitterTrends.
The source code is released under:
Apache License
If you think the Android project TwitterTrends 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 camp.androidboot.twittertrends.network; //from w w w. j a va 2 s .c om import camp.androidboot.twittertrends.model.Status; import camp.androidboot.twittertrends.model.Trend; import java.util.List; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; /** * */ public interface TwitterLite { @GET("/trends") void trends(Callback<List<Trend>> trends); @GET("/search") void search(@Query("query") String query, Callback<List<Status>> statuses); }