Merge "Prevent ConfigPusher from killing its thread"
[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.RpcImplementation;
13 import org.opendaylight.controller.sal.core.api.RpcProvisionRegistry;
14 import org.opendaylight.controller.sal.core.api.Broker.RoutedRpcRegistration;
15 import org.opendaylight.controller.sal.core.api.Broker.RpcRegistration;
16 import org.opendaylight.controller.sal.core.api.RpcRegistrationListener;
17 import org.opendaylight.yangtools.concepts.ListenerRegistration;
18 import org.opendaylight.yangtools.yang.common.QName;
19 import org.opendaylight.yangtools.yang.common.RpcResult;
20 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
21
22 public interface RpcRouter extends RpcProvisionRegistry, RpcImplementation {
23
24     @Override
25     public RoutedRpcRegistration addRoutedRpcImplementation(QName rpcType, RpcImplementation implementation);
26     
27     @Override
28     public RpcRegistration addRpcImplementation(QName rpcType, RpcImplementation implementation)
29             throws IllegalArgumentException;
30     
31     @Override
32     public Set<QName> getSupportedRpcs();
33     
34     @Override
35     public RpcResult<CompositeNode> invokeRpc(QName rpc, CompositeNode input);
36 }