Issue #117 fixed javadoc errors

This commit is contained in:
Greg Wilkins 2016-12-02 14:34:37 +11:00
parent 73ee8f29bd
commit 4b82f54ad3
2 changed files with 3 additions and 5 deletions

View File

@ -22,6 +22,8 @@ import java.io.Closeable;
import java.io.IOException; import java.io.IOException;
import java.net.InetSocketAddress; import java.net.InetSocketAddress;
import org.eclipse.jetty.websocket.api.annotations.OnWebSocketClose;
/** /**
* Session represents an active link of communications with a Remote WebSocket Endpoint. * Session represents an active link of communications with a Remote WebSocket Endpoint.
*/ */

View File

@ -109,8 +109,6 @@ public interface UpgradeRequest
/** /**
* The host of the Upgrade Request URI * The host of the Upgrade Request URI
* <p>
* Equivalent to {@link #getRequestURI()#getHost()}
* *
* @return host of the request URI * @return host of the request URI
*/ */
@ -140,7 +138,7 @@ public interface UpgradeRequest
* <p> * <p>
* See <a href="http://tools.ietf.org/html/rfc6455#section-10.2">RFC6455: Section 10.2</a> for details. * See <a href="http://tools.ietf.org/html/rfc6455#section-10.2">RFC6455: Section 10.2</a> for details.
* <p> * <p>
* Equivalent to {@link #getHeader("Origin")} * Equivalent to {@link #getHeader(String)} passed the "Origin" header.
* *
* @return the Origin header * @return the Origin header
*/ */
@ -165,8 +163,6 @@ public interface UpgradeRequest
/** /**
* Get the Query String of the request URI. * Get the Query String of the request URI.
* <p>
* Equivalent to {@link #getRequestURI()#getQueryString()}
* *
* @return the request uri query string * @return the request uri query string
*/ */