Package com.xeiam.xchange.okcoin.service.polling

Source Code of com.xeiam.xchange.okcoin.service.polling.OkCoinAccountServiceRaw

package com.xeiam.xchange.okcoin.service.polling;

import java.io.IOException;

import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.okcoin.dto.account.OkCoinUserInfo;

public class OkCoinAccountServiceRaw extends OKCoinBaseTradePollingService {

  protected OkCoinAccountServiceRaw(ExchangeSpecification exchangeSpecification) {

    super(exchangeSpecification);
  }

  public OkCoinUserInfo getUserInfo() throws IOException {

    OkCoinUserInfo userInfo = okCoin.getUserInfo(partner, signatureCreator);

    return returnOrThrow(userInfo);
  }

}
TOP

Related Classes of com.xeiam.xchange.okcoin.service.polling.OkCoinAccountServiceRaw

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.