tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <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> |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 5 | <action class="org.onlab.onos.cli.NodesListCommand"/> |
| 6 | </command> |
| 7 | <command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 8 | <action class="org.onlab.onos.cli.NodeAddCommand"/> |
| 9 | </command> |
| 10 | <command> |
| 11 | <action class="org.onlab.onos.cli.NodeRemoveCommand"/> |
| 12 | </command> |
| 13 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 14 | <action class="org.onlab.onos.cli.MastersListCommand"/> |
| 15 | <completers> |
| 16 | <ref component-id="clusterIdCompleter"/> |
| 17 | </completers> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 18 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 19 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 20 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 21 | <action class="org.onlab.onos.cli.net.DevicesListCommand"/> |
| 22 | </command> |
| 23 | <command> |
| 24 | <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 25 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 26 | <ref component-id="deviceIdCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 27 | </completers> |
| 28 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 29 | <command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 30 | <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/> |
| 31 | <completers> |
| 32 | <ref component-id="deviceIdCompleter"/> |
| 33 | </completers> |
| 34 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 35 | <command> |
| 36 | <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/> |
| 37 | <completers> |
| 38 | <ref component-id="deviceIdCompleter"/> |
| 39 | <ref component-id="roleCompleter"/> |
| 40 | </completers> |
| 41 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 42 | |
| 43 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 44 | <action class="org.onlab.onos.cli.net.LinksListCommand"/> |
| 45 | <completers> |
| 46 | <ref component-id="deviceIdCompleter"/> |
| 47 | </completers> |
| 48 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 49 | |
| 50 | <command> |
| 51 | <action class="org.onlab.onos.cli.net.TopologyCommand"/> |
| 52 | </command> |
| 53 | <command> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 54 | <action class="org.onlab.onos.cli.net.PathListCommand"/> |
| 55 | <completers> |
| 56 | <ref component-id="deviceIdCompleter"/> |
| 57 | </completers> |
| 58 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 59 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 60 | <command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 61 | <action class="org.onlab.onos.cli.net.AddHostToHostIntentCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 62 | <completers> |
| 63 | <ref component-id="hostIdCompleter"/> |
| 64 | </completers> |
| 65 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 66 | <command> |
| 67 | <action class="org.onlab.onos.cli.net.IntentsListCommand"/> |
| 68 | </command> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 69 | |
| 70 | <command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 71 | <action class="org.onlab.onos.cli.net.ClustersListCommand"/> |
| 72 | </command> |
| 73 | <command> |
| 74 | <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/> |
| 75 | <completers> |
| 76 | <ref component-id="clusterIdCompleter"/> |
| 77 | </completers> |
| 78 | </command> |
| 79 | <command> |
| 80 | <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/> |
| 81 | <completers> |
| 82 | <ref component-id="clusterIdCompleter"/> |
| 83 | </completers> |
| 84 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 85 | |
| 86 | <command> |
| 87 | <action class="org.onlab.onos.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 88 | </command> |
| 89 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 90 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 91 | <action class="org.onlab.onos.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 92 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 93 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 94 | <ref component-id="deviceIdCompleter"/> |
| 95 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 96 | </command> |
| 97 | |
| 98 | <command> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 99 | <action class="org.onlab.onos.cli.net.WipeOutCommand"/> |
| 100 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 101 | </command-bundle> |
| 102 | |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 103 | <bean id="nodeIdCompleter" class="org.onlab.onos.cli.NodeIdCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 104 | <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 105 | <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 106 | <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 107 | <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 108 | <bean id="flowRuleStatusCompleter" class="org.onlab.onos.cli.net.FlowRuleStatusCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 109 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 110 | </blueprint> |