Remove DOMDataTreeCommitCohortRegistration
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMActionService.java
index f1a26809d3114c773f03f3cc015440f327e1be09..90ef9e1b5deaabbecbcbc94b0bc807efb6eeb579 100644 (file)
@@ -20,7 +20,14 @@ import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absol
  */
 @Beta
 @NonNullByDefault
-public interface DOMActionService extends DOMService<DOMActionService, DOMActionServiceExtension> {
+public interface DOMActionService extends DOMService<DOMActionService, DOMActionService.Extension> {
+    /**
+     * Marker interface for extensions of {@link DOMActionService}.
+     */
+    interface Extension extends DOMService.Extension<DOMActionService, Extension> {
+        // Marker interface
+    }
+
     /**
      * Initiate invocation of an Action. This method is guaranteed to not block on any external resources.
      *