org.webpieces.webserver.test.MockHttpFrontend 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 java.nio.ByteBuffer;
import org.webpieces.frontend.api.HttpFrontend;
import org.webpieces.nio.api.channels.TCPServerChannel;
public class MockHttpFrontend implements HttpFrontend {
@Override
public void close() {
}
@Override
public void enableOverloadMode(ByteBuffer overloadResponse) {
}
@Override
public void disableOverloadMode() {
}
@Override
public TCPServerChannel getUnderlyingChannel() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy