Deprecate old MD-SAL APIs for removal
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMService.java
index aa9eeca67b41d1afcf498995bba650f99a1a5010..882330faf105bae9e04157d97f11ef8681de7ee5 100644 (file)
@@ -3,16 +3,20 @@
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html.
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.controller.md.sal.dom.api;
 
-import org.opendaylight.controller.sal.core.api.BrokerService;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 
 /**
- * Marker interface for services which can be obtained from a {@link DOMMountPoint}
- * instance. No further semantics are implied.
+ * Marker interface for services which can be obtained from a {@link DOMMountPoint} instance. No further semantics are
+ * implied.
+ *
+ * @deprecated Use {@link org.opendaylight.mdsal.dom.api.DOMService} instead.
  */
-public interface DOMService extends BrokerService {
+@Deprecated(forRemoval = true)
+@SuppressFBWarnings(value = "NM_SAME_SIMPLE_NAME_AS_INTERFACE", justification = "Migration")
+public interface DOMService extends org.opendaylight.mdsal.dom.api.DOMService {
 
 }