package hello; import static hello.Helper.sendJson; import io.undertow.server.HttpHandler; import io.undertow.server.HttpServerExchange; import java.util.Map; /** * Handles the JSON test. */ final class JsonHandler implements HttpHandler { @Override public void handleRequest(HttpServerExchange exchange) { Map value = Map.of("message", "Hello, World!"); sendJson(exchange, value); } }