All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webpieces.webserver.test.MockHttpFrontendMgr Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.webserver.test;

import org.webpieces.frontend.api.FrontendConfig;
import org.webpieces.frontend.api.HttpFrontend;
import org.webpieces.frontend.api.HttpFrontendManager;
import org.webpieces.frontend.api.HttpRequestListener;
import org.webpieces.nio.api.SSLEngineFactory;

public class MockHttpFrontendMgr implements HttpFrontendManager {

	@Override
	public HttpFrontend createHttpServer(FrontendConfig config, HttpRequestListener listener) {
		return new MockHttpFrontend();
	}

	@Override
	public HttpFrontend createHttpsServer(FrontendConfig config, HttpRequestListener listener,
			SSLEngineFactory factory) {
		return new MockHttpFrontend();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy