All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kucoin.sdk.rest.adapter.CurrencyAPIAdaptor Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2019 Mek Global Limited.
 */
package com.kucoin.sdk.rest.adapter;

import com.kucoin.sdk.rest.impl.retrofit.PublicRetrofitAPIImpl;
import com.kucoin.sdk.rest.interfaces.CurrencyAPI;
import com.kucoin.sdk.rest.interfaces.retrofit.CurrencyAPIRetrofit;
import com.kucoin.sdk.rest.response.CurrencyDetailResponse;
import com.kucoin.sdk.rest.response.CurrencyResponse;

import java.io.IOException;
import java.util.List;

/**
 * Created by chenshiwei on 2019/1/15.
 */
public class CurrencyAPIAdaptor extends PublicRetrofitAPIImpl implements CurrencyAPI {

    public CurrencyAPIAdaptor(String baseUrl) {
        this.baseUrl = baseUrl;
    }

    @Override
    public List getCurrencies() throws IOException {
        return super.executeSync(getAPIImpl().getCurrencies());
    }

    @Override
    public CurrencyDetailResponse getCurrencyDetail(String currency) throws IOException {
        return super.executeSync(getAPIImpl().getCurrencyDetail(currency));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy