Merge "Fix warnings reported in toaster"
[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 import org.opendaylight.yangtools.yang.common.RpcResult;
18 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
19
20 public interface RpcRouter extends RpcProvisionRegistry, RpcImplementation {
21
22     @Override
23     public RoutedRpcRegistration addRoutedRpcImplementation(QName rpcType, RpcImplementation implementation);
24
25     @Override
26     public RpcRegistration addRpcImplementation(QName rpcType, RpcImplementation implementation)
27             throws IllegalArgumentException;
28
29     @Override
30     public Set<QName> getSupportedRpcs();
31
32     @Override
33     public RpcResult<CompositeNode> invokeRpc(QName rpc, CompositeNode input);
34 }