package org.knowm.xchange.yobit.service; import org.knowm.xchange.Exchange; import org.knowm.xchange.service.BaseExchangeService; import org.knowm.xchange.service.BaseService; import org.knowm.xchange.yobit.YoBit; import si.mazi.rescu.RestProxyFactory; public class YoBitBaseService<T extends YoBit> extends BaseExchangeService implements BaseService { protected final T coinbaseEx; protected YoBitBaseService(Class<T> type, Exchange exchange) { super(exchange); this.coinbaseEx = RestProxyFactory.createProxy(type, exchange.getExchangeSpecification().getSslUri()); } }