Binding2 - Make ListAction extend Action
[mdsal.git] / binding2 / mdsal-binding2-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / api / RpcActionConsumerRegistry.java
index 860e0bcea02c4acfb05a39184ae12fa2c3a56f1a..ad95dc3ad4548153994e42688ede43266386260f 100644 (file)
@@ -48,7 +48,7 @@ public interface RpcActionConsumerRegistry extends BindingService {
      * @param <T> interface type
      * @return returns proxy for the requested Action
      */
-    <T extends Action<? extends TreeNode, ?, ?>> T getActionService(Class<T> serviceInterface);
+    <T extends Action<? extends TreeNode, ?, ?, ?>> T getActionService(Class<T> serviceInterface);
 
     /**
      * Returns an implementation of a requested ListAction service.
@@ -61,6 +61,6 @@ public interface RpcActionConsumerRegistry extends BindingService {
      * @param <T> interface type
      * @return returns proxy for the requested ListAction
      */
-    <T extends ListAction<? extends TreeNode, ?, ?>> T getListActionService(Class<T> serviceInterface);
+    <T extends ListAction<? extends TreeNode, ?, ?, ?>> T getListActionService(Class<T> serviceInterface);
 
 }