Split Restconf implementations (draft02 and RFC) - move
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / restconf / handlers / Handler.java
index efcd20840598bfba17dbf9b4febf9b588cc44185..ea311021c345005786205766c93ada26dae00b1e 100644 (file)
@@ -12,8 +12,10 @@ package org.opendaylight.restconf.handlers;
  * Handler for handling object prepared by provider for Restconf services.
  *
  * @param <T>
- *             specific type go object for handling it
+ *            specific type go object for handling it
+ * @deprecated move to splitted module restconf-nb-rfc8040
  */
+@Deprecated
 interface Handler<T> {
 
     /**
@@ -29,5 +31,5 @@ interface Handler<T> {
      * @param object
      *             new object to update old object
      */
-    default void update(T object) {}
+    default void update(final T object) {}
 }