Merge "Fix netconf ssh client"
[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  *
14  * Marker interface for MD-SAL services which are available for users of MD-SAL.
15  *
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  * This interface extends {@link BindingAwareService}, order to be make
22  * new services available via
23  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext}
24  * and via
25  * {@link org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext}
26  *
27  */
28 public interface BindingService extends BindingAwareService {
29
30 }