package at.gv.egiz.eaaf.core.impl.idp.auth; 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; import org.apache.http.impl.client.CloseableHttpClient; 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; } }