--- old/src/jdk.httpserver/share/classes/com/sun/net/httpserver/HttpServer.java 2017-08-01 13:16:38.180083258 -0700 +++ new/src/jdk.httpserver/share/classes/com/sun/net/httpserver/HttpServer.java 2017-08-01 13:16:37.968073977 -0700 @@ -59,21 +59,29 @@ * Paths are matched literally, which means that the strings are compared * case sensitively, and with no conversion to or from any encoded forms. * For example. Given a HttpServer with the following HttpContexts configured. - * - * - * - * - * + *
description
ContextContext path
ctx1"/"
ctx2"/apps/"
ctx3"/apps/foo/"
+ * + * + * + * + * + * + * + * *
description
ContextContext path
ctx1"/"
ctx2"/apps/"
ctx3"/apps/foo/"
*

* the following table shows some request URIs and which, if any context they would * match with. - * - * - * - * - * - * + *
description
Request URIMatches context
"http://foo.com/apps/foo/bar"ctx3
"http://foo.com/apps/Foo/bar"no match, wrong case
"http://foo.com/apps/app1"ctx2
"http://foo.com/foo"ctx1
+ * + * + * + * + * + * + * + * + * *
description
Request URIMatches context
"http://foo.com/apps/foo/bar"ctx3
"http://foo.com/apps/Foo/bar"no match, wrong case
"http://foo.com/apps/app1"ctx2
"http://foo.com/foo"ctx1
*

* Note about socket backlogs

--- old/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java 2017-08-01 13:16:38.708106371 -0700 +++ new/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java 2017-08-01 13:16:38.504097441 -0700 @@ -618,7 +618,7 @@ * on one of the given {@code CompletableFuture + * * @implNote Implementations might follow the pattern shown below *

          * {@code
@@ -633,7 +633,6 @@
          *      }
          * }
          * 
- *

* * @param onComplete a CompletableFuture which completes after all * responses have been received relating to this multi request. --- old/src/jdk.net/share/classes/jdk/net/NetworkPermission.java 2017-08-01 13:16:39.240129660 -0700 +++ new/src/jdk.net/share/classes/jdk/net/NetworkPermission.java 2017-08-01 13:16:39.028120380 -0700 @@ -36,25 +36,30 @@ * * + * * - * - * - * + * + * + * * + * + * * - * + * * * * * - * + * * * - *
permission target name, * what the target allows,and associated risks
Permission Target NameWhat the Permission AllowsRisks of Allowing this PermissionPermission Target NameWhat the Permission AllowsRisks of Allowing this Permission
setOption.SO_FLOW_SLAsetOption.SO_FLOW_SLAset the {@link ExtendedSocketOptions#SO_FLOW_SLA SO_FLOW_SLA} option * on any socket that supports itallows caller to set a higher priority or bandwidth allocation * to sockets it creates, than they might otherwise be allowed.
getOption.SO_FLOW_SLAgetOption.SO_FLOW_SLAretrieve the {@link ExtendedSocketOptions#SO_FLOW_SLA SO_FLOW_SLA} * setting from any socket that supports the optionallows caller access to SLA information that it might not * otherwise have
+ * + * + * * * @see jdk.net.ExtendedSocketOptions *