Remove unused YANG imports
[openflowplugin.git] / applications / forwardingrules-manager / src / main / yang / frm-reconciliation.yang
1 module frm-reconciliation {
2
3     namespace "urn:opendaylight:params:xml:ns:yang:openflowplugin:app:frm-reconciliation:service";
4     prefix frm-reconciliation;
5
6     import opendaylight-inventory {prefix inv; revision-date "2013-08-19";}
7
8     revision "2018-02-27" {
9         description "Initial revision of trigger based frm reconciliation";
10     }
11
12     rpc reconcile-node {
13         description "Executes reconciliation between the controller and node";
14         input {
15             uses "inv:node-context-ref";
16             leaf nodeId {
17                 type uint64;
18             }
19         }
20
21         output {
22             leaf result {
23                 description "The result of reconciliation, for follow-up";
24                 type boolean;
25             }
26         }
27     }
28 }