Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2013-01-29 17:12:16 +0000
committerJoakim Erdfelt2013-01-29 20:22:38 +0000
commit871b64cf382030a037d00ccd1fbf73609f3c24f2 (patch)
treed695c34b33bdd0aef8c61fa505d5ffa22229e384 /jetty-websocket/websocket-api/src
parent54c6928f58dbe976f2ba87f120cf3a44566bc532 (diff)
downloadorg.eclipse.jetty.project-871b64cf382030a037d00ccd1fbf73609f3c24f2.tar.gz
org.eclipse.jetty.project-871b64cf382030a037d00ccd1fbf73609f3c24f2.tar.xz
org.eclipse.jetty.project-871b64cf382030a037d00ccd1fbf73609f3c24f2.zip
Bug 399344 - Add missing @OnWebSocketError annotation
Diffstat (limited to 'jetty-websocket/websocket-api/src')
-rw-r--r--jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/annotations/OnWebSocketError.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/annotations/OnWebSocketError.java b/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/annotations/OnWebSocketError.java
new file mode 100644
index 0000000000..8fbf14f338
--- /dev/null
+++ b/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/annotations/OnWebSocketError.java
@@ -0,0 +1,46 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+package org.eclipse.jetty.websocket.api.annotations;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+import org.eclipse.jetty.websocket.api.WebSocketException;
+
+/**
+ * Annotation for receiving websocket errors (exceptions) that have occurred internally in the websocket implementation.
+ * <p>
+ * Acceptable method patterns.<br>
+ * Note: <code>methodName</code> can be any name you want to use.
+ * <p>
+ * <ol>
+ * <li><code>public void methodName({@link WebSocketException} error)</code></li>
+ * </ol>
+ */
+@Documented
+@Retention(RetentionPolicy.RUNTIME)
+@Target(value =
+{ ElementType.METHOD })
+public @interface OnWebSocketError
+{
+ /* no config */
+}

Back to the top