--- old/src/java.xml.ws/share/classes/javax/xml/ws/spi/http/HttpExchange.java 2015-09-19 13:16:20.601018216 +0300 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/spi/http/HttpExchange.java 2015-09-19 13:16:20.461017521 +0300 @@ -259,7 +259,7 @@ * It is the path that comes * after the web service path but before the query string in the * request URI - * null if there is no extra path in the request URI + * {@code null} if there is no extra path in the request URI */ public abstract String getPathInfo(); @@ -271,7 +271,7 @@ * This can be used for {@link MessageContext#QUERY_STRING} * * @return undecoded query string of request URI, or - * null if the request URI doesn't have one + * {@code null} if the request URI doesn't have one */ public abstract String getQueryString(); @@ -292,7 +292,7 @@ * be exposed using {@link #REQUEST_X509CERTIFICATE} * * @param name attribute name - * @return the attribute value, or null if the attribute doesn't + * @return the attribute value, or {@code null} if the attribute doesn't * exist */ public abstract Object getAttribute(String name); @@ -311,7 +311,7 @@ * user for this {@code HttpExchange}. * * @return Principal for an authenticated user, or - * null if not authenticated + * {@code null} if not authenticated */ public abstract Principal getUserPrincipal(); @@ -320,7 +320,7 @@ * logical "role". * * @param role specifies the name of the role - * @return true if the user making this request belongs to a + * @return {@code true} if the user making this request belongs to a * given role */ public abstract boolean isUserInRole(String role);