public void handle()

in callouts/java/service-callout/src/main/java/service/ServiceCallout.java [397:403]


        public void handle(HttpExchange exchange) throws IOException {
            String response = "OK";
            exchange.sendResponseHeaders(200, response.length());
            try (OutputStream os = exchange.getResponseBody()) {
                os.write(response.getBytes());
            }
        }