diff options
author | Joakim Erdfelt | 2016-01-13 14:25:15 +0000 |
---|---|---|
committer | Joakim Erdfelt | 2016-01-13 14:25:15 +0000 |
commit | 30308f2316df071be17a957ec3751e040668fe3f (patch) | |
tree | 5bee3678c9200201bd3d81af7891e7402e25d56b /jetty-websocket | |
parent | 00c5efc056e60acec93c2b947cc9b1ea88043574 (diff) | |
download | org.eclipse.jetty.project-30308f2316df071be17a957ec3751e040668fe3f.tar.gz org.eclipse.jetty.project-30308f2316df071be17a957ec3751e040668fe3f.tar.xz org.eclipse.jetty.project-30308f2316df071be17a957ec3751e040668fe3f.zip |
Javadoc updates
Diffstat (limited to 'jetty-websocket')
2 files changed, 4 insertions, 4 deletions
diff --git a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/LogicalConnection.java b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/LogicalConnection.java index 6e4c2ec84f..944d6efd55 100644 --- a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/LogicalConnection.java +++ b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/LogicalConnection.java @@ -35,7 +35,7 @@ public interface LogicalConnection extends OutgoingFrames, SuspendToken * <p> * Basic usage: results in an non-blocking async write, then connection close. * - * @see StatusCode + * @see org.eclipse.jetty.websocket.api.StatusCode * @see #close(int, String) */ public void close(); @@ -49,7 +49,7 @@ public interface LogicalConnection extends OutgoingFrames, SuspendToken * the status code * @param reason * the (optional) reason. (can be null for no reason) - * @see StatusCode + * @see org.eclipse.jetty.websocket.api.StatusCode */ public void close(int statusCode, String reason); diff --git a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/scopes/WebSocketContainerScope.java b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/scopes/WebSocketContainerScope.java index 9e1f5e0665..aacaf85ab2 100644 --- a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/scopes/WebSocketContainerScope.java +++ b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/scopes/WebSocketContainerScope.java @@ -69,14 +69,14 @@ public interface WebSocketContainerScope /** * A Session has been opened * - * @param the session that was opened + * @param session the session that was opened */ public void onSessionOpened(WebSocketSession session); /** * A Session has been closed * - * @param the session that was closed + * @param session the session that was closed */ public void onSessionClosed(WebSocketSession session); |