com.xeiam.xchange.vircurex.service.polling.VircurexAccountService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-vircurex Show documentation
Show all versions of xchange-vircurex Show documentation
XChange implementation for the Vircurex Exchange
The newest version!
package com.xeiam.xchange.vircurex.service.polling;
import java.io.IOException;
import java.math.BigDecimal;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.dto.account.AccountInfo;
import com.xeiam.xchange.exceptions.NotYetImplementedForExchangeException;
import com.xeiam.xchange.service.polling.account.PollingAccountService;
import com.xeiam.xchange.vircurex.VircurexAdapters;
public class VircurexAccountService extends VircurexAccountServiceRaw implements PollingAccountService {
/**
* Constructor
*
* @param exchange
*/
public VircurexAccountService(Exchange exchange) {
super(exchange);
}
@Override
public AccountInfo getAccountInfo() throws IOException {
return VircurexAdapters.adaptAccountInfo(getVircurexAccountInfo());
}
@Override
public String requestDepositAddress(String currency, String... arguments) throws IOException {
throw new NotYetImplementedForExchangeException();
}
@Override
public String withdrawFunds(String currecny, BigDecimal amount, String address) throws IOException {
throw new NotYetImplementedForExchangeException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy