org.knowm.xchange.exx.service.EXXAccountService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-exx Show documentation
Show all versions of xchange-exx Show documentation
Development fork. Not for general use.
package org.knowm.xchange.exx.service;
import java.io.IOException;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.dto.account.AccountInfo;
import org.knowm.xchange.exx.EXXAdapters;
import org.knowm.xchange.service.account.AccountService;
public class EXXAccountService extends EXXAccountServiceRaw implements AccountService {
public EXXAccountService(Exchange exchange) {
super(exchange);
}
@Override
public AccountInfo getAccountInfo() throws IOException {
return EXXAdapters.convertBalance(super.getExxAccountInfo());
}
}