D | NanoHTTPD.java | 269 …public Response serve(String uri, Method method, Map<String, String> headers, Map<String, String> … in serve() 271 return new Response(Response.Status.NOT_FOUND, MIME_PLAINTEXT, "Not Found"); in serve() 283 public Response serve(IHTTPSession session) { in serve() 290 …return new Response(Response.Status.INTERNAL_ERROR, MIME_PLAINTEXT, "SERVER INTERNAL ERROR: IOExce… in serve() 292 return new Response(re.getStatus(), MIME_PLAINTEXT, re.getMessage()); in serve() 536 public static class Response { class in NanoHTTPD 565 public Response(String msg) { in Response() method in NanoHTTPD.Response 572 public Response(IStatus status, String mimeType, InputStream data) { in Response() method in NanoHTTPD.Response 581 public Response(IStatus status, String mimeType, String txt) { in Response() method in NanoHTTPD.Response 789 private final Response.Status status; [all …]
|