8262296: Fix remaining doclint warnings in jdk.httpserver

Reviewed-by: dfuchs, bpb
This commit is contained in:
Chris Hegarty 2021-02-25 10:53:06 +00:00
parent ea48a0bb56
commit f79c626816
5 changed files with 7 additions and 3 deletions

@ -151,7 +151,7 @@ public abstract class Authenticator {
* is required. Any response headers needing to be sent back to the client are set
* in the given {@code HttpExchange}. The response code to be returned must be
* provided in the {@code Retry} object. {@code Retry} may occur multiple times.
* <ul/>
* </ul>
*
* @param exch the {@code HttpExchange} upon which authenticate is called
* @return the result

@ -42,6 +42,7 @@ public interface HttpHandler {
* @param exchange the exchange containing the request from the
* client and used to send the response
* @throws NullPointerException if exchange is {@code null}
* @throws IOException if an I/O error occurs
*/
public abstract void handle (HttpExchange exchange) throws IOException;
}

@ -26,6 +26,7 @@
package com.sun.net.httpserver;
import java.net.InetSocketAddress;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLParameters;
/**

@ -58,6 +58,7 @@ public abstract class HttpsServer extends HttpServer {
* must also have a {@code HttpsConfigurator} established with
* {@link #setHttpsConfigurator(HttpsConfigurator)}.
*
* @return an instance of {@code HttpsServer}
* @throws IOException if an I/O error occurs
*/
public static HttpsServer create() throws IOException {
@ -80,6 +81,7 @@ public abstract class HttpsServer extends HttpServer {
* the address
* @param backlog the socket backlog. If this value is less than or equal to
* zero, then a system default value is used.
* @return an instance of {@code HttpsServer}
* @throws BindException if the server cannot bind to the requested address,
* or if the server is already bound
* @throws IOException if an I/O error occurs

@ -26,8 +26,8 @@
/**
Provides a simple high-level Http server API, which can be used to build
embedded HTTP servers. Both "http" and "https" are supported. The API provides
a partial implementation of RFC <a href="http://www.ietf.org/rfc/rfc2616.txt">2616</a> (HTTP 1.1)
and RFC <a href="http://www.ietf.org/rfc/rfc2818.txt">2818</a> (HTTP over TLS).
a partial implementation of RFC <a href="https://www.ietf.org/rfc/rfc2616.txt">2616</a> (HTTP 1.1)
and RFC <a href="https://www.ietf.org/rfc/rfc2818.txt">2818</a> (HTTP over TLS).
Any HTTP functionality not provided by this API can be implemented by application code
using the API.
<p>