public class InterestingClient {
private static final String API_URL = "http://localhost:8080/";
public static void main(String[] args) {
// Create our Converter
JacksonConverter converter = new JacksonConverter(new ObjectMapper());
// Build the Retrofit REST adaptor pointing to the URL specified, with the Converter.
// Note: The Converter must be set before the .build() command
RestAdapter restAdapter = new RestAdapter.Builder()
.setConverter(converter)