koncept.http.server.handler.DummyHandler Maven / Gradle / Ivy
package koncept.http.server.handler;
import java.io.IOException;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
public class DummyHandler implements HttpHandler {
private boolean handled = false;
@Override
public void handle(HttpExchange exchange) throws IOException {
handled = true;
}
public boolean handled() {
return handled;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy