org.webpieces.webserver.test.MockHttpFrontendMgr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-webserver-test Show documentation
Show all versions of http-webserver-test Show documentation
The full webpieces server AS A library
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