X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FBrokerService.java;h=dec2f7a4845ecf5a720384865299714f15c1982a;hp=b4253680528f1b4d029dff2ad88eae8230946d66;hb=2e29ba0089e109c71af6fae1a6811255f9845049;hpb=6b64494fd8e4654a298312afb4b8e6e827b75d5d diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/BrokerService.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/BrokerService.java index b425368052..dec2f7a484 100644 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/BrokerService.java +++ b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/BrokerService.java @@ -10,30 +10,29 @@ package org.opendaylight.controller.sal.core.api; import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; /** - * + * * Session-specific instance of the broker functionality. - * + * *

* 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. - * + * *

* The consumer's (or provider's) instance of specific service could be obtained * by invoking {@link ConsumerSession#getService(Class)} method on session * assigned to the consumer. - * + * *

* {@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. - * - * + * + * */ public interface BrokerService { - void closeSession(); }