Add FIXMEs to Rpc{Input,Output}
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / RpcOutput.java
index 3f0d07327341a0b29b077b09aad1cb44173be196..c24e11f83f412dae8d476c44fb5e7d6a5e7fcea1 100644 (file)
@@ -7,15 +7,12 @@
  */
 package org.opendaylight.yangtools.yang.binding;
 
-import com.google.common.annotations.Beta;
-
 /**
  * Marker interface for all interfaces generated for {@code output} statement within an {@code action} or an {@code rpc}
  * statement.
- *
- * @author Robert Varga
  */
-@Beta
+// FIXME: this should not really be a DataObject, but a separate DataContainer and a BindingObject
 public interface RpcOutput extends DataObject {
-
+    @Override
+    Class<? extends RpcOutput> implementedInterface();
 }