sal-remote yang
[controller.git] / opendaylight / md-sal / sal-restconf-broker / src / main / java / org / opendaylight / controller / sal / restconf / broker / SalRemoteServiceBroker.java
1 /*
2  * Copyright (c) 2013 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.sal.restconf.broker;
9
10
11 import org.opendaylight.controller.sal.core.api.Broker;
12 import org.opendaylight.controller.sal.core.api.Consumer;
13 import org.opendaylight.controller.sal.core.api.Provider;
14 import org.osgi.framework.BundleContext;
15
16 public class SalRemoteServiceBroker implements Broker,AutoCloseable {
17
18     @Override
19     public void close() throws Exception {
20
21     }
22
23     @Override
24     public ConsumerSession registerConsumer(Consumer cons, BundleContext context) {
25         return null;
26     }
27
28     @Override
29     public ProviderSession registerProvider(Provider prov, BundleContext context) {
30         return null;
31     }
32 }