Fix action invocation and registration
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / 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.mdsal.binding.api;
9
10
11 /**
12  * Marker interface for MD-SAL services which are available for users of MD-SAL.
13  *
14  * <p>
15  * BindingService is marker interface for infrastructure services provided by
16  * the SAL. These services may be session-specific, and wrapped by custom
17  * delegator patterns in order to introduce additional semantics / checks
18  * to the system.
19  *
20  */
21 public interface BindingService {
22
23 }