Deprecate all MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / md / sal / binding / api / BindingService.java
index ccce73c7d7d8f6ccf76acab8b45a60cc0dbce7ea..63f34c46dc8d78d78b1ab0352a06ac10a4d6357e 100644 (file)
@@ -10,21 +10,24 @@ package org.opendaylight.controller.md.sal.binding.api;
 import org.opendaylight.controller.sal.binding.api.BindingAwareService;
 
 /**
- *
  * Marker interface for MD-SAL services which are available for users of MD-SAL.
  *
+ * <p>
  * BindingService is marker interface for infrastructure services provided by
  * the SAL. These services may be session-specific, and wrapped by custom
  * delegator patterns in order to introduce additional semantics / checks
  * to the system.
  *
+ * <p>
  * This interface extends {@link BindingAwareService}, order to be make
  * new services available via
  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext}
  * and via
  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext}
  *
+ * @deprecated Use {@link BindingService} instead.
  */
+@Deprecated
 public interface BindingService extends BindingAwareService {
 
 }