Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / md / sal / binding / api / MountPointService.java
index 05583271262a082c56566e2d3c2894d436be3fb4..dec4b8caa8ad74d2af50b9f853298a889c7e9a39 100644 (file)
@@ -12,6 +12,12 @@ import java.util.EventListener;
 import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
+/**
+ * Deprecated.
+ *
+ * @deprecated Use {@link org.opendaylight.mdsal.binding.api.MountPointService} instead
+ */
+@Deprecated
 public interface MountPointService extends BindingService {
 
     Optional<MountPoint> getMountPoint(InstanceIdentifier<?> mountPoint);
@@ -19,7 +25,7 @@ public interface MountPointService extends BindingService {
     <T extends MountPointListener> ListenerRegistration<T> registerListener(InstanceIdentifier<?> path, T listener);
 
 
-    public interface MountPointListener extends EventListener {
+    interface MountPointListener extends EventListener {
 
         void onMountPointCreated(InstanceIdentifier<?> path);