Add SchemaTreeAwareEffectiveStatement
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / RpcEffectiveStatement.java
index 61af9e36f83805e4dd6c919790692317b3e09908..6612cd5bd69fc167990934f3bdf739abfd577e0c 100644 (file)
@@ -9,9 +9,9 @@ package org.opendaylight.yangtools.yang.model.api.stmt;
 
 import com.google.common.annotations.Beta;
 import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
 
 @Beta
-public interface RpcEffectiveStatement extends EffectiveStatement<QName, RpcStatement> {
+public interface RpcEffectiveStatement extends SchemaTreeEffectiveStatement<RpcStatement>,
+    SchemaTreeAwareEffectiveStatement<QName, RpcStatement> {
 
 }