Back to project page FoursquareWear.
The source code is released under:
GNU General Public License
If you think the Android project FoursquareWear 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.nlefler.nlfoursquare.Search; /*from w w w . j a v a 2s .c o m*/ import com.nlefler.nlfoursquare.Model.FoursquareResponse.NLFoursquareResponse; import com.nlefler.nlfoursquare.Model.Venue.NLFoursquareVenue; import com.nlefler.nlfoursquare.Model.Venue.NLFoursquareVenueSearchResponse; import java.util.List; import java.util.Map; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.QueryMap; /** * Created by Nathan Lefler on 5/19/14. */ public interface NLFoursquareVenueSearch { @GET("/venues/search") void search(@QueryMap Map<String, String> parameters, Callback<NLFoursquareResponse<NLFoursquareVenueSearchResponse>> callback); }