package at.gv.egiz.eaaf.core.impl.idp.auth; import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; import at.gv.egiz.eaaf.core.exceptions.EaafException; import at.gv.egiz.eaaf.core.impl.http.HttpClientConfiguration; import at.gv.egiz.eaaf.core.impl.http.IHttpClientFactory; public class DummyHttpClientFactory implements IHttpClientFactory { @Override public CloseableHttpClient getHttpClient() { // TODO Auto-generated method stub return null; } @Override public CloseableHttpClient getHttpClient(final boolean followRedirects) { // TODO Auto-generated method stub return null; } @Override public CloseableHttpClient getHttpClient(HttpClientConfiguration config) throws EaafException { // TODO Auto-generated method stub return null; } }