BUG 2412 - remove CompositeNode from sal-binding-dom-it
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / mount / MountService.java
index 530b02b733a0ea945ddad4018a2d29e4f8050705..55b74c63d324b171e1097a9c348df496500ccfed 100644 (file)
@@ -7,10 +7,22 @@
  */
 package org.opendaylight.controller.sal.core.api.mount;
 
-import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
+import org.opendaylight.controller.sal.core.api.BrokerService;
+import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
-
-public interface MountService {
-
-    MountInstance getMountPoint(InstanceIdentifier path);
+/**
+ * Client-level interface for interacting with mount points. It provides access
+ * to {@link MountInstance} instances based on their path.
+ *
+ *  @deprecated Use org.opendaylight.controller.md.sal.dom.api.DOMMountPointService instead
+ */
+@Deprecated
+public interface MountService extends BrokerService {
+    /**
+     * Obtain access to a mount instance registered at the specified path.
+     *
+     * @param path Path at which the instance is registered
+     * @return Reference to the instance, or null if no such instance exists.
+     */
+    MountInstance getMountPoint(YangInstanceIdentifier path);
 }