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