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> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 16 | |
| 17 | <command> |
| 18 | <action class="org.onlab.onos.cli.RolesCommand"/> |
| 19 | </command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 20 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 21 | <action class="org.onlab.onos.cli.MastersListCommand"/> |
| 22 | <completers> |
| 23 | <ref component-id="clusterIdCompleter"/> |
| 24 | </completers> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 25 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 26 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 27 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 28 | <action class="org.onlab.onos.cli.net.DevicesListCommand"/> |
| 29 | </command> |
| 30 | <command> |
| 31 | <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 32 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 33 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 34 | <null/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 35 | </completers> |
| 36 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 37 | <command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 38 | <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/> |
| 39 | <completers> |
| 40 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 41 | <null/> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 42 | </completers> |
| 43 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 44 | <command> |
| 45 | <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/> |
| 46 | <completers> |
| 47 | <ref component-id="deviceIdCompleter"/> |
tom | a6235a5 | 2014-10-15 13:25:39 -0700 | [diff] [blame] | 48 | <ref component-id="nodeIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 49 | <ref component-id="roleCompleter"/> |
| 50 | <null/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 51 | </completers> |
| 52 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 53 | |
| 54 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 55 | <action class="org.onlab.onos.cli.net.LinksListCommand"/> |
| 56 | <completers> |
| 57 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 58 | <null/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 59 | </completers> |
| 60 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 61 | |
| 62 | <command> |
| 63 | <action class="org.onlab.onos.cli.net.TopologyCommand"/> |
| 64 | </command> |
| 65 | <command> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 66 | <action class="org.onlab.onos.cli.net.PathListCommand"/> |
| 67 | <completers> |
| 68 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 69 | <ref component-id="deviceIdCompleter"/> |
| 70 | <null/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 71 | </completers> |
| 72 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 73 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 74 | <command> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 75 | <action class="org.onlab.onos.cli.net.IntentsListCommand"/> |
| 76 | </command> |
| 77 | <command> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 78 | <action class="org.onlab.onos.cli.net.IntentRemoveCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 79 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 80 | <ref component-id="intentIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 81 | <null/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 82 | </completers> |
| 83 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 84 | <command> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 85 | <action class="org.onlab.onos.cli.net.AddHostToHostIntentCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 86 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 87 | <ref component-id="hostIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 88 | <ref component-id="hostIdCompleter"/> |
| 89 | <null/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 90 | </completers> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 91 | </command> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 92 | <command> |
| 93 | <action class="org.onlab.onos.cli.net.AddPointToPointIntentCommand"/> |
| 94 | <completers> |
| 95 | <ref component-id="connectPointCompleter"/> |
| 96 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 97 | <null/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 98 | </completers> |
| 99 | </command> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 100 | <command> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 101 | <action class="org.onlab.onos.cli.net.AddMultiPointToSinglePointIntentCommand"/> |
| 102 | <completers> |
| 103 | <ref component-id="connectPointCompleter"/> |
| 104 | </completers> |
| 105 | </command> |
| 106 | <command> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 107 | <action class="org.onlab.onos.cli.net.IntentPushTestCommand"/> |
| 108 | <completers> |
| 109 | <ref component-id="connectPointCompleter"/> |
| 110 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 111 | <ref component-id="nullCompleter"/> |
| 112 | <null/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 113 | </completers> |
| 114 | </command> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 115 | |
| 116 | <command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 117 | <action class="org.onlab.onos.cli.net.ClustersListCommand"/> |
| 118 | </command> |
| 119 | <command> |
| 120 | <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/> |
| 121 | <completers> |
| 122 | <ref component-id="clusterIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 123 | <null/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 124 | </completers> |
| 125 | </command> |
| 126 | <command> |
| 127 | <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/> |
| 128 | <completers> |
| 129 | <ref component-id="clusterIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 130 | <null/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 131 | </completers> |
| 132 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 133 | |
| 134 | <command> |
| 135 | <action class="org.onlab.onos.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 136 | </command> |
| 137 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 138 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 139 | <action class="org.onlab.onos.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 140 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 141 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 142 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 143 | <null/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 144 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 145 | </command> |
| 146 | |
| 147 | <command> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 148 | <action class="org.onlab.onos.cli.net.WipeOutCommand"/> |
| 149 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 150 | </command-bundle> |
| 151 | |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 152 | <bean id="nodeIdCompleter" class="org.onlab.onos.cli.NodeIdCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 153 | <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 154 | <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 155 | <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 156 | <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 157 | <bean id="intentIdCompleter" class="org.onlab.onos.cli.net.IntentIdCompleter"/> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 158 | <bean id="flowRuleStatusCompleter" class="org.onlab.onos.cli.net.FlowRuleStatusCompleter"/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 159 | <bean id="connectPointCompleter" class="org.onlab.onos.cli.net.ConnectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 160 | <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 161 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 162 | </blueprint> |