Integrate Action with BindingContract
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / BindingContract.java
index 53510f685f8324ab28efb5a74cf69bb9e5357bca..76a9a2709c4c057298cb0dbb9f898f4a275e1f25 100644 (file)
@@ -17,7 +17,8 @@ import org.eclipse.jdt.annotation.NonNull;
  */
 @Beta
 // FIXME: evaluate integrating with BindingObject
-public sealed interface BindingContract<T extends BindingContract<T>> permits BaseIdentity, DataContainer, YangFeature {
+public sealed interface BindingContract<T extends BindingContract<T>>
+        permits Action, BaseIdentity, DataContainer, YangFeature {
     /**
      * Return the interface implemented by this object. This method differs from {@link Object#getClass()} in that it
      * returns the interface contract, not a concrete implementation class.