blob: bab4f74e88e5dd97b338f145d593115b647ee564 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2
3 <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
4 <command>
tom9b4030d2014-10-06 10:39:03 -07005 <action class="org.onlab.onos.cli.SummaryCommand"/>
6 </command>
7 <command>
tome4729872014-09-23 00:37:37 -07008 <action class="org.onlab.onos.cli.NodesListCommand"/>
9 </command>
10 <command>
tom9710fb42014-09-29 11:35:28 -070011 <action class="org.onlab.onos.cli.NodeAddCommand"/>
12 </command>
13 <command>
14 <action class="org.onlab.onos.cli.NodeRemoveCommand"/>
15 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070016
17 <command>
18 <action class="org.onlab.onos.cli.RolesCommand"/>
19 </command>
tom9710fb42014-09-29 11:35:28 -070020 <command>
tom1380eee2014-09-24 09:22:02 -070021 <action class="org.onlab.onos.cli.MastersListCommand"/>
22 <completers>
23 <ref component-id="clusterIdCompleter"/>
24 </completers>
alshabiba7f7ca82014-09-22 11:41:23 -070025 </command>
tom1380eee2014-09-24 09:22:02 -070026
alshabiba7f7ca82014-09-22 11:41:23 -070027 <command>
tom6d2a43e2014-09-08 01:50:20 -070028 <action class="org.onlab.onos.cli.net.DevicesListCommand"/>
29 </command>
30 <command>
31 <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -070032 <completers>
tom6d2a43e2014-09-08 01:50:20 -070033 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070034 <null/>
tom0eb04ca2014-08-25 14:34:51 -070035 </completers>
36 </command>
tom6d2a43e2014-09-08 01:50:20 -070037 <command>
tomc290a122014-09-08 14:27:13 -070038 <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/>
39 <completers>
40 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070041 <null/>
tomc290a122014-09-08 14:27:13 -070042 </completers>
43 </command>
tom5f35f7c2014-09-08 18:38:19 -070044 <command>
45 <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/>
46 <completers>
47 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -070048 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070049 <ref component-id="roleCompleter"/>
50 <null/>
tom5f35f7c2014-09-08 18:38:19 -070051 </completers>
52 </command>
tomc290a122014-09-08 14:27:13 -070053
54 <command>
tom6d2a43e2014-09-08 01:50:20 -070055 <action class="org.onlab.onos.cli.net.LinksListCommand"/>
56 <completers>
57 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070058 <null/>
tom6d2a43e2014-09-08 01:50:20 -070059 </completers>
60 </command>
tom13cb4852014-09-11 12:44:17 -070061
62 <command>
63 <action class="org.onlab.onos.cli.net.TopologyCommand"/>
64 </command>
65 <command>
tom9eb57fb2014-09-11 19:42:38 -070066 <action class="org.onlab.onos.cli.net.PathListCommand"/>
67 <completers>
68 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070069 <ref component-id="deviceIdCompleter"/>
70 <null/>
tom9eb57fb2014-09-11 19:42:38 -070071 </completers>
72 </command>
tomf5c9d922014-10-03 15:22:03 -070073
tom9eb57fb2014-09-11 19:42:38 -070074 <command>
tom0511a522014-10-04 12:06:02 -070075 <action class="org.onlab.onos.cli.net.IntentsListCommand"/>
76 </command>
77 <command>
tom6db1f0a2014-10-07 09:12:29 -070078 <action class="org.onlab.onos.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -070079 <completers>
tom6db1f0a2014-10-07 09:12:29 -070080 <ref component-id="intentIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070081 <null/>
Brian O'Connor66630c82014-10-02 21:08:19 -070082 </completers>
83 </command>
tomf5c9d922014-10-03 15:22:03 -070084 <command>
tom6db1f0a2014-10-07 09:12:29 -070085 <action class="org.onlab.onos.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -070086 <completers>
tom6db1f0a2014-10-07 09:12:29 -070087 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070088 <ref component-id="hostIdCompleter"/>
89 <null/>
tom0511a522014-10-04 12:06:02 -070090 </completers>
tomf5c9d922014-10-03 15:22:03 -070091 </command>
Ray Milkeya058c732014-10-08 13:52:34 -070092 <command>
93 <action class="org.onlab.onos.cli.net.AddPointToPointIntentCommand"/>
94 <completers>
95 <ref component-id="connectPointCompleter"/>
96 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070097 <null/>
Ray Milkeya058c732014-10-08 13:52:34 -070098 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -070099 <optional-completers>
100 <entry key="-t" value-ref="ethTypeCompleter"/>
101 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700102 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700103 <command>
Ray Milkey0742ec92014-10-13 08:39:55 -0700104 <action class="org.onlab.onos.cli.net.AddMultiPointToSinglePointIntentCommand"/>
105 <completers>
106 <ref component-id="connectPointCompleter"/>
107 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700108 <optional-completers>
109 <entry key="-t" value-ref="ethTypeCompleter"/>
110 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700111 </command>
112 <command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700113 <action class="org.onlab.onos.cli.net.IntentPushTestCommand"/>
114 <completers>
115 <ref component-id="connectPointCompleter"/>
116 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700117 <ref component-id="nullCompleter"/>
118 <null/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700119 </completers>
120 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700121
122 <command>
tom13cb4852014-09-11 12:44:17 -0700123 <action class="org.onlab.onos.cli.net.ClustersListCommand"/>
124 </command>
125 <command>
126 <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/>
127 <completers>
128 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700129 <null/>
tom13cb4852014-09-11 12:44:17 -0700130 </completers>
131 </command>
132 <command>
133 <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/>
134 <completers>
135 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700136 <null/>
tom13cb4852014-09-11 12:44:17 -0700137 </completers>
138 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700139
140 <command>
141 <action class="org.onlab.onos.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700142 </command>
143
tom89b63c52014-09-16 09:19:51 -0700144 <command>
tom1380eee2014-09-24 09:22:02 -0700145 <action class="org.onlab.onos.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700146 <completers>
alshabib144a2942014-09-25 18:44:02 -0700147 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700148 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700149 <null/>
alshabib99b8fdc2014-09-25 14:30:22 -0700150 </completers>
tom1380eee2014-09-24 09:22:02 -0700151 </command>
152
153 <command>
tom89b63c52014-09-16 09:19:51 -0700154 <action class="org.onlab.onos.cli.net.WipeOutCommand"/>
155 </command>
tom0eb04ca2014-08-25 14:34:51 -0700156 </command-bundle>
157
tom1380eee2014-09-24 09:22:02 -0700158 <bean id="nodeIdCompleter" class="org.onlab.onos.cli.NodeIdCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700159 <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/>
tom13cb4852014-09-11 12:44:17 -0700160 <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -0700161 <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700162 <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/>
tom0511a522014-10-04 12:06:02 -0700163 <bean id="intentIdCompleter" class="org.onlab.onos.cli.net.IntentIdCompleter"/>
alshabib144a2942014-09-25 18:44:02 -0700164 <bean id="flowRuleStatusCompleter" class="org.onlab.onos.cli.net.FlowRuleStatusCompleter"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700165 <bean id="connectPointCompleter" class="org.onlab.onos.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700166 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700167 <bean id="ethTypeCompleter" class="org.onlab.onos.cli.net.EthTypeCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700168
tom0eb04ca2014-08-25 14:34:51 -0700169</blueprint>