X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2FBindingAwareService.java;h=2a54c7d855761274f7e11136f000c03212f513a3;hp=adaa27f3e62b9551ccf4cd37fc651ccd7966950a;hb=3ec97cd0a86ad1b79f6854dc6924eb7b06e359a3;hpb=059605a27e8a1280cefa8186a9057144bc281518 diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareService.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareService.java index adaa27f3e6..2a54c7d855 100644 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareService.java +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareService.java @@ -7,6 +7,8 @@ */ package org.opendaylight.controller.sal.binding.api; +import org.opendaylight.controller.md.sal.binding.api.BindingService; + /** * Session-specific instance of the broker functionality. * @@ -17,17 +19,20 @@ package org.opendaylight.controller.sal.binding.api; * 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 org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext#getSALService(Class)} method on session - * assigned to the consumer. + * The consumer's (or provider's) instance of specific service could be obtained by invoking + * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext#getSALService(Class)} + * method on session assigned to the consumer. * *

- * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext} and {@link BindingAwareProvider} may seem - * similar, but provider provides YANG model-based functionality and + * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext} + * and {@link BindingAwareProvider} may seem similar, but provider provides YANG model-based functionality and * {@link BindingAwareProvider} exposes the necessary supporting functionality * to implement specific functionality of YANG and to reuse it in the * development of {@link BindingAwareConsumer}s and {@link BindingAwareProvider}s. + * + * @deprecated Use {@link BindingService} instead. */ +@Deprecated public interface BindingAwareService { }