63f34c46dc8d78d78b1ab0352a06ac10a4d6357e
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / md / sal / binding / api / BindingService.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.md.sal.binding.api;
9
10 import org.opendaylight.controller.sal.binding.api.BindingAwareService;
11
12 /**
13  * Marker interface for MD-SAL services which are available for users of MD-SAL.
14  *
15  * <p>
16  * BindingService is marker interface for infrastructure services provided by
17  * the SAL. These services may be session-specific, and wrapped by custom
18  * delegator patterns in order to introduce additional semantics / checks
19  * to the system.
20  *
21  * <p>
22  * This interface extends {@link BindingAwareService}, order to be make
23  * new services available via
24  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext}
25  * and via
26  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext}
27  *
28  * @deprecated Use {@link BindingService} instead.
29  */
30 @Deprecated
31 public interface BindingService extends BindingAwareService {
32
33 }