Back to project page demo-flickr-feed-android.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project demo-flickr-feed-android 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 uk.org.tomek.flickrfeed.rest.service; /* www.j av a 2 s . co m*/ import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; import uk.org.tomek.flickrfeed.model.Feed; /** * TODO: Add class header description! * <p/> * Created by tomek on 12/10/14. */ public interface FlickrPostsService { @GET("/feeds/photos_public.gne?format=json") public void listPosts(@Query("tags") String tags, Callback<Feed> feedCallback); }