Added listener for rpc registrations.
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / RpcImplementation.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.core.api;
9
10 import java.util.Set;
11
12 import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;
13 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.common.RpcResult;
16 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
17
18 /**
19  * {@link Provider}'s implementation of rpc.
20  * 
21  * In order to expose the rpc to other components, the provider MUST register
22  * concrete implementation of this interface
23  * 
24  * The registration could be done by :
25  * <ul>
26  * <li>returning an instance of implementation in the return value of
27  * {@link Provider#getProviderFunctionality()}
28  * <li>passing an instance of implementation and {@link QName} of rpc as
29  * arguments to the
30  * {@link ProviderSession#addRpcImplementation(QName, RpcImplementation)}
31  * </ul>
32  * 
33  * The simplified process of the invocation of rpc is following:
34  * 
35  * <ol>
36  * <li> {@link Consumer} invokes
37  * {@link ConsumerSession#rpc(QName, CompositeNode)}
38  * <li> {@link Broker} finds registered {@link RpcImplementation}s
39  * <li> {@link Broker} invokes
40  * {@link RpcImplementation#invokeRpc(QName, CompositeNode)}
41  * <li> {@link RpcImplementation} processes the data and returns a
42  * {@link RpcResult}
43  * <li> {@link Broker} returns the {@link RpcResult} to {@link Consumer}
44  * </ol>
45  * 
46  * 
47  */
48 public interface RpcImplementation extends Provider.ProviderFunctionality {
49
50     /**
51      * A set of rpc types supported by implementation.
52      * 
53      * The set of rpc {@link QName}s which are supported by this implementation.
54      * This set is used, when {@link Provider} is registered to the SAL, to
55      * register and expose the implementation of the returned rpcs.
56      * 
57      * @return Set of QNames identifying supported RPCs
58      */
59     Set<QName> getSupportedRpcs();
60
61     /**
62      * Invokes a implementation of specified rpc.
63      * 
64      * 
65      * @param rpc
66      *            Rpc to be invoked
67      * @param input
68      *            Input data for rpc.
69      * 
70      * @throws IllegalArgumentException
71      *             <ul>
72      *             <li>If rpc is null.
73      *             <li>If input is not <code>null</code> and
74      *             <code>false == rpc.equals(input.getNodeType)</code>
75      *             </ul>
76      * @return RpcResult containing the output of rpc if was executed
77      *         successfully, the list of errors otherwise.
78      */
79     RpcResult<CompositeNode> invokeRpc(QName rpc, CompositeNode input);
80
81 }