tw.bun.app_002.BunApiClient.java Source code

Java tutorial

Introduction

Here is the source code for tw.bun.app_002.BunApiClient.java

Source

/*
 * Copyright (C) 2012 Square, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package tw.bun.app_002;

import com.facebook.stetho.okhttp.StethoInterceptor;
import com.squareup.okhttp.OkHttpClient;

import java.util.List;

import retrofit.RestAdapter;
import retrofit.client.OkClient;
import retrofit.http.GET;
import retrofit.http.Path;

public class BunApiClient {
    private static final String API_URL = "http://api.bun.tw";

    static class Word {
        String word;
    }

    interface Bun {
        @GET("/word/random")
        List<Word> words();
    }

    public static List<Word> getWords() {
        OkHttpClient client = new OkHttpClient();
        client.networkInterceptors().add(new StethoInterceptor());

        // Create a very simple REST adapter which points the Bun API endpoint.
        RestAdapter restAdapter = new RestAdapter.Builder().setEndpoint(API_URL).setClient(new OkClient(client))
                .build();

        // Create an instance of our Bun API interface.
        Bun bun = restAdapter.create(Bun.class);

        // Fetch and print a list of the words to this library.
        return bun.words();
    }
}