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;fp=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2FBindingAwareService.java;h=0000000000000000000000000000000000000000;hp=4f0ec6b0391d3bf27a7a743a18816a2f7d952c1b;hb=2611e6a728e586ea34dd891f30a473bf54d6cbd8;hpb=aaea3e9a92ae9d6fac04c4a065db4b35cbca9ed0 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 deleted file mode 100644 index 4f0ec6b039..0000000000 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareService.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * 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 - */ -package org.opendaylight.controller.sal.binding.api; - -import org.opendaylight.controller.md.sal.binding.api.BindingService; - -/** - * Session-specific instance of the broker functionality. - * - *

- * BindingAwareService is marker interface for infrastructure services provided - * by the SAL. These services are session-specific, each - * {@link BindingAwareConsumer} and {@link BindingAwareProvider} 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 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 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(forRemoval = true) -public interface BindingAwareService { - -}