com.xeiam.xchange.vircurex.service.polling.VircurexBasePollingService 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 com.xeiam.xchange.Exchange;
import com.xeiam.xchange.service.BaseExchangeService;
import com.xeiam.xchange.service.polling.BasePollingService;
import com.xeiam.xchange.vircurex.VircurexAuthenticated;
import si.mazi.rescu.RestProxyFactory;
public class VircurexBasePollingService extends BaseExchangeService implements BasePollingService {
protected VircurexAuthenticated vircurexAuthenticated;
/**
* Constructor
*
* @param exchange
*/
public VircurexBasePollingService(Exchange exchange) {
super(exchange);
this.vircurexAuthenticated = RestProxyFactory.createProxy(VircurexAuthenticated.class, exchange.getExchangeSpecification().getSslUri());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy