http-client-branch: remove incubating tag http-client-branch
authorchegar
Tue, 06 Feb 2018 19:33:23 +0000
branchhttp-client-branch
changeset 56087 e73e506a1969
parent 56086 ba42a59d3072
child 56088 38fac6d0521d
http-client-branch: remove incubating tag
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClient.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpHeaders.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpRequest.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpTimeoutException.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocket.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/WebSocketHandshakeException.java
src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/package-info.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}
  *
  * <p> 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}
      *
      * <p> 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}
      *
      * <p> This is checked whenever a {@code 3XX} response code is received. If
      * redirection does not happen automatically then the response is returned
--- 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}
  *
  * <p> 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
--- 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 }
  *
  * <p> 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}
      *
      * <p> 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}
      *
      * <p> The {@code BodyPublisher} class implements {@link Flow.Publisher
      * Flow.Publisher&lt;ByteBuffer&gt;} which means that a {@code BodyPublisher}
--- 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}
  *
  * <p> 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}
      *
      * <p> 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}
      *
      * <p> The object acts as a {@link Flow.Subscriber}&lt;{@link List}&lt;{@link
      * ByteBuffer}&gt;&gt; to the HTTP client implementation, which publishes
--- 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
  */
--- 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}
  *
  * <p> 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}
      *
      * <p> 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}
      *
      * <p> 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
      */
--- 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
  */
--- 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 @@
 
 /**
  * <h2>High level HTTP and WebSocket API</h2>
- * {@Incubating}
  *
  * <p> Provides high-level client interfaces to HTTP (versions 1.1 and 2) and
  * WebSocket. The main types defined are: