Fix modules Restconf call for mounted devices
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / sal / dom / broker / spi / RpcRouter.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.sal.dom.broker.spi;
9
10 import java.util.Set;
11
12 import org.opendaylight.controller.sal.core.api.Broker.RoutedRpcRegistration;
13 import org.opendaylight.controller.sal.core.api.Broker.RpcRegistration;
14 import org.opendaylight.controller.sal.core.api.RpcImplementation;
15 import org.opendaylight.controller.sal.core.api.RpcProvisionRegistry;
16 import org.opendaylight.yangtools.yang.common.QName;
17
18 public interface RpcRouter extends RpcProvisionRegistry, RpcImplementation {
19
20     @Override
21     public RoutedRpcRegistration addRoutedRpcImplementation(QName rpcType, RpcImplementation implementation);
22
23     @Override
24     public RpcRegistration addRpcImplementation(QName rpcType, RpcImplementation implementation)
25             throws IllegalArgumentException;
26
27     @Override
28     public Set<QName> getSupportedRpcs();
29 }