# HG changeset patch # User chegar # Date 1517945603 0 # Node ID e73e506a1969ea761765a01f5cff4c09c422167d # Parent ba42a59d30727d1a987a0b5ae5f2bb7c7be67663 http-client-branch: remove incubating tag diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClient.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClient.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClient.java Tue Feb 06 19:33:23 2018 +0000 @@ -44,7 +44,6 @@ /** * An HTTP Client. - * {@Incubating} * *

An {@code HttpClient} can be used to send requests and retrieve their * responses. An {@code HttpClient} is created through a {@link @@ -122,7 +121,6 @@ /** * A builder of immutable {@link HttpClient}s. - * {@Incubating} * *

Builders are created by invoking {@linkplain HttpClient#newBuilder() * newBuilder}. Each of the setter methods modifies the state of the builder @@ -385,7 +383,6 @@ /** * The HTTP protocol version. - * {@Incubating} * * @since 11 */ @@ -404,7 +401,6 @@ /** * Defines automatic redirection policy. - * {@Incubating} * *

This is checked whenever a {@code 3XX} response code is received. If * redirection does not happen automatically then the response is returned diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpHeaders.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpHeaders.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpHeaders.java Tue Feb 06 19:33:23 2018 +0000 @@ -35,7 +35,6 @@ /** * A read-only view of a set of HTTP headers. - * {@Incubating} * *

The methods of this class ( that accept a String header name ), and the * Map returned by the {@linkplain #map() map} method, operate without regard to diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequest.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequest.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequest.java Tue Feb 06 19:33:23 2018 +0000 @@ -51,7 +51,6 @@ /** * An HTTP request. - * {@Incubating } * *

An {@code HttpRequest} instance is built through a {@code HttpRequest} * {@linkplain HttpRequest.Builder builder}. An {@code HttpRequest} builder @@ -239,7 +238,6 @@ /** * A builder of {@linkplain HttpRequest HTTP Requests}. - * {@Incubating} * *

Instances of {@code HttpRequest.Builder} are created by calling {@link * HttpRequest#newBuilder(URI)} or {@link HttpRequest#newBuilder()}. @@ -575,7 +573,6 @@ /** * A Publisher which converts high level Java objects into flows of * byte buffers suitable for sending as request bodies. - * {@Incubating} * *

The {@code BodyPublisher} class implements {@link Flow.Publisher * Flow.Publisher<ByteBuffer>} which means that a {@code BodyPublisher} diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java Tue Feb 06 19:33:23 2018 +0000 @@ -58,7 +58,6 @@ /** * Represents a response to a {@link HttpRequest}. - * {@Incubating} * *

A {@code HttpResponse} is available when the response status code and * headers have been received, and typically after the response body has also @@ -178,7 +177,6 @@ /** * A handler for response bodies. - * {@Incubating} * *

This is a function that takes two parameters: the response status code, * and the response headers, and which returns a {@linkplain BodySubscriber}. @@ -752,7 +750,6 @@ /** * A subscriber for response bodies. - * {@Incubating} * *

The object acts as a {@link Flow.Subscriber}<{@link List}<{@link * ByteBuffer}>> to the HTTP client implementation, which publishes diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpTimeoutException.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpTimeoutException.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpTimeoutException.java Tue Feb 06 19:33:23 2018 +0000 @@ -29,7 +29,6 @@ /** * Thrown when a response is not received within a specified time period. - * {@Incubating} * * @since 11 */ diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocket.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocket.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocket.java Tue Feb 06 19:33:23 2018 +0000 @@ -34,7 +34,6 @@ /** * A WebSocket client. - * {@Incubating} * *

To create a {@code WebSocket} use the {@link HttpClient#newWebSocketBuilder} * method. To close a {@code WebSocket} use one of the {@code sendClose} or @@ -98,7 +97,6 @@ /** * A builder for creating {@code WebSocket} instances. - * {@Incubating} * *

To obtain a {@code WebSocket} configure a builder as required by * calling intermediate methods (the ones that return the builder itself), @@ -209,7 +207,6 @@ /** * The receiving interface of {@code WebSocket}. - * {@Incubating} * *

A {@code WebSocket} invokes methods on its listener when it receives * messages or encounters events. The invoking {@code WebSocket} is passed @@ -465,7 +462,6 @@ /** * A marker used by {@link WebSocket.Listener} for identifying partial * messages. - * {@Incubating} * * @since 11 */ diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocketHandshakeException.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocketHandshakeException.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocketHandshakeException.java Tue Feb 06 19:33:23 2018 +0000 @@ -29,7 +29,6 @@ /** * An exception used to signal the opening handshake failed. - * {@Incubating} * * @since 11 */ diff -r ba42a59d3072 -r e73e506a1969 src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/package-info.java --- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/package-info.java Tue Feb 06 19:29:33 2018 +0000 +++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/package-info.java Tue Feb 06 19:33:23 2018 +0000 @@ -25,7 +25,6 @@ /** *

High level HTTP and WebSocket API

- * {@Incubating} * *

Provides high-level client interfaces to HTTP (versions 1.1 and 2) and * WebSocket. The main types defined are: