Deprecate websocket-client
[yangtools.git] / websocket / websocket-client / src / main / java / org / opendaylight / yangtools / websocket / client / callback / ClientMessageCallback.java
index 0766d1a4e13f1c7175516fb0b4d018ce1bfcebce..1617e735f2c6c9ad8bbea3e60762f7650f04fa8c 100644 (file)
@@ -9,14 +9,17 @@ package org.opendaylight.yangtools.websocket.client.callback;
 
 /**
  * {@link ClientMessageCallback} notifies client that some event has occurred.
+ *
+ * @deprecated This code is deprecated without replacement.
  */
+@Deprecated
 public interface ClientMessageCallback {
 
     /**
      * Notifies client that some event has occurred.
-     * 
+     *
      * @param message
      *            the message which aid to will be client notified
      */
-    public void onMessageReceived(Object message);
+    void onMessageReceived(Object message);
 }