Map identities to proper objects
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / DataContainer.java
index 9aaaabac937194fde78dc03aa1c6a2c62786bec6..78983fe810439cda3e65df7b5c702d538c04d53d 100644 (file)
@@ -11,15 +11,14 @@ package org.opendaylight.yangtools.yang.binding;
  * Data Container - object contains structured data. Marker interface which must be implemented by all interfaces
  * generated for YANG:
  * <ul>
- * <li>Rpc Input
- * <li>Output
- * <li>Notification
- * <li>Container
- * <li>List
- * <li>Case
+ *   <li>Rpc Input</li>
+ *   <li>Output</li>
+ *   <li>Notification</li>
+ *   <li>Container</li>
+ *   <li>List</li>
+ *   <li>Case</li>
  * </ul>
  */
-public interface DataContainer {
+public interface DataContainer extends BindingContract<DataContainer> {
 
-    Class<? extends DataContainer> getImplementedInterface();
 }