Remove deprecated controller.sal.core.api interfaces
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / BrokerService.java
index 7c00c9c2bbae2a1c229ac79d4b483c33f6327238..655d5fb871d84fd3f193bfc51d2e6fcf96e18296 100644 (file)
@@ -8,29 +8,12 @@
 package org.opendaylight.controller.sal.core.api;
 
 /**
+ * Session-specific instance of the broker functionality. BrokerService is marker interface for infrastructure services
+ * provided by the SAL.
  *
- * Session-specific instance of the broker functionality.
- *
- * <p>
- * BrokerService is marker interface for infrastructure services provided by the
- * SAL. These services are session-specific, each {@link Provider} and
- * {@link Consumer} usually has own instance of the service with it's own
- * context.
- *
- * <p>
- * The consumer's (or provider's) instance of specific service could be obtained
- * by invoking {@link org.opendaylight.controller.sal.core.api.Broker.ConsumerSession#getService(Class)} method on session
- * assigned to the consumer.
- *
- * <p>
- * {@link BrokerService} and {@link Provider} may seem similar, but provider
- * provides YANG model-based functionality and {@link BrokerService} exposes the
- * necessary supporting functionality to implement specific functionality of
- * YANG and to reuse it in the development of {@link Consumer}s and
- * {@link Provider}s.
- *
- *
+ * @deprecated Use blueprint instead for code wiring.
  */
+@Deprecated
 public interface BrokerService {
 
 }