Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 1 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 2 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 3 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 7 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 15 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 16 | <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> |
| 17 | |
| 18 | <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0"> |
| 19 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 20 | <action class="org.onosproject.cli.SummaryCommand"/> |
tom | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 21 | </command> |
Yuta HIGUCHI | 6a46283 | 2014-11-23 23:56:03 -0800 | [diff] [blame] | 22 | |
| 23 | <command> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 24 | <action class="org.onosproject.cli.security.PermissionCommand"/> |
| 25 | <completers> |
| 26 | <ref component-id="permCommandCompleter"/> |
| 27 | <ref component-id="permAppNameCompleter"/> |
| 28 | <ref component-id="permNameCompleter"/> |
| 29 | </completers> |
| 30 | </command> |
| 31 | |
| 32 | <command> |
Xin Jin | 313708b | 2015-07-09 13:43:04 -0700 | [diff] [blame] | 33 | <action class="org.onosproject.cli.net.FlowObjectiveCompositionCommand"/> |
| 34 | </command> |
| 35 | |
| 36 | <command> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 37 | <action class="org.onosproject.cli.app.ApplicationsListCommand"/> |
| 38 | </command> |
| 39 | |
| 40 | <command> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 41 | <action class="org.onosproject.cli.app.ApplicationCommand"/> |
| 42 | <completers> |
| 43 | <ref component-id="appCommandCompleter"/> |
| 44 | <ref component-id="appNameCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 45 | </completers> |
| 46 | </command> |
| 47 | |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 48 | <command> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 49 | <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 50 | <completers> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 51 | <ref component-id="cfgCommandCompleter"/> |
| 52 | <ref component-id="componentNameCompleter"/> |
Ray Milkey | fb6655e | 2015-04-10 10:50:54 -0700 | [diff] [blame] | 53 | <ref component-id="componentPropertyNameCompleter"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 54 | </completers> |
| 55 | </command> |
| 56 | |
| 57 | <command> |
Thomas Vachuska | 96d55b1 | 2015-05-11 08:52:03 -0700 | [diff] [blame] | 58 | <action class="org.onosproject.cli.cfg.NetworkConfigRegistryCommand"/> |
| 59 | </command> |
| 60 | |
| 61 | <command> |
| 62 | <action class="org.onosproject.cli.cfg.NetworkConfigCommand"/> |
| 63 | </command> |
| 64 | |
| 65 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 66 | <action class="org.onosproject.cli.MetricsListCommand"/> |
Flavio Castro | 4b51941 | 2015-07-24 12:57:59 -0700 | [diff] [blame] | 67 | <completers> |
| 68 | <ref component-id="metricNameCompleter"/> |
| 69 | </completers> |
Yuta HIGUCHI | 6a46283 | 2014-11-23 23:56:03 -0800 | [diff] [blame] | 70 | </command> |
| 71 | |
tom | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 72 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 73 | <action class="org.onosproject.cli.NodesListCommand"/> |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 74 | </command> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 75 | |
| 76 | <command> |
Thomas Vachuska | 4cfcc56 | 2015-06-03 09:51:02 -0700 | [diff] [blame] | 77 | <action class="org.onosproject.cli.UiViewListCommand"/> |
| 78 | </command> |
| 79 | |
| 80 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 81 | <action class="org.onosproject.cli.RolesCommand"/> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 82 | </command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 83 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 84 | <action class="org.onosproject.cli.MastersListCommand"/> |
Thomas Vachuska | e0f804a | 2014-10-27 23:40:48 -0700 | [diff] [blame] | 85 | </command> |
| 86 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 87 | <action class="org.onosproject.cli.BalanceMastersCommand"/> |
Thomas Vachuska | e02e11c | 2014-11-24 16:13:52 -0800 | [diff] [blame] | 88 | </command> |
| 89 | <command> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 90 | <action class="org.onosproject.cli.app.ApplicationIdListCommand"/> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 91 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 92 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 93 | <command> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 94 | <action class="org.onosproject.cli.net.DriversListCommand"/> |
| 95 | <completers> |
| 96 | <ref component-id="driverNameCompleter"/> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 97 | </completers> |
| 98 | </command> |
| 99 | |
| 100 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 101 | <action class="org.onosproject.cli.net.DevicesListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 102 | </command> |
| 103 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 104 | <action class="org.onosproject.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 105 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 106 | <ref component-id="deviceIdCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 107 | </completers> |
| 108 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 109 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 110 | <action class="org.onosproject.cli.net.DeviceRemoveCommand"/> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 111 | <completers> |
| 112 | <ref component-id="deviceIdCompleter"/> |
| 113 | </completers> |
| 114 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 115 | <command> |
alshabib | 58fe6dc | 2015-08-19 17:16:13 -0700 | [diff] [blame] | 116 | <action class="org.onosproject.cli.net.AddMeter"/> |
| 117 | <completers> |
| 118 | <ref component-id="deviceIdCompleter"/> |
| 119 | </completers> |
| 120 | </command> |
| 121 | <command> |
| 122 | <action class="org.onosproject.cli.net.Meters"/> |
| 123 | <completers> |
| 124 | <ref component-id="deviceIdCompleter"/> |
| 125 | </completers> |
| 126 | </command> |
| 127 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 128 | <action class="org.onosproject.cli.net.DeviceRoleCommand"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 129 | <completers> |
| 130 | <ref component-id="deviceIdCompleter"/> |
tom | a6235a5 | 2014-10-15 13:25:39 -0700 | [diff] [blame] | 131 | <ref component-id="nodeIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 132 | <ref component-id="roleCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 133 | </completers> |
| 134 | </command> |
Thomas Vachuska | 8ceee94 | 2015-04-14 16:53:57 -0700 | [diff] [blame] | 135 | <command> |
| 136 | <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/> |
| 137 | <completers> |
| 138 | <ref component-id="deviceIdCompleter"/> |
Thomas Vachuska | 8ceee94 | 2015-04-14 16:53:57 -0700 | [diff] [blame] | 139 | </completers> |
| 140 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 141 | |
| 142 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 143 | <action class="org.onosproject.cli.net.LinksListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 144 | <completers> |
| 145 | <ref component-id="deviceIdCompleter"/> |
| 146 | </completers> |
| 147 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 148 | |
| 149 | <command> |
Aaron Kruglikov | a2b5915 | 2015-06-24 14:01:41 -0700 | [diff] [blame] | 150 | <action class="org.onosproject.cli.net.EdgePortsListCommand"/> |
| 151 | <completers> |
| 152 | <ref component-id="deviceIdCompleter"/> |
| 153 | </completers> |
| 154 | </command> |
| 155 | |
| 156 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 157 | <action class="org.onosproject.cli.net.TopologyCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 158 | </command> |
| 159 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 160 | <action class="org.onosproject.cli.net.PathListCommand"/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 161 | <completers> |
| 162 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 163 | <ref component-id="deviceIdCompleter"/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 164 | </completers> |
| 165 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 166 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 167 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 168 | <action class="org.onosproject.cli.net.IntentsListCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 169 | </command> |
| 170 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 171 | <action class="org.onosproject.cli.net.IntentRemoveCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 172 | <completers> |
Ray Milkey | d088e8a | 2015-04-07 14:56:57 -0700 | [diff] [blame] | 173 | <ref component-id="appIdWithIntentNameCompleter"/> |
Brian O'Connor | 264cb99 | 2015-06-04 17:16:57 -0700 | [diff] [blame] | 174 | <ref component-id="intentKeyCompleter"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 175 | </completers> |
| 176 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 177 | <command> |
Brian O'Connor | 72df5b1 | 2015-06-02 16:50:18 -0700 | [diff] [blame] | 178 | <action class="org.onosproject.cli.net.IntentPurgeCommand"/> |
| 179 | </command> |
| 180 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 181 | <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 182 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 183 | <ref component-id="hostIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 184 | <ref component-id="hostIdCompleter"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 185 | </completers> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 186 | <optional-completers> |
Charles M.C. Chan | 2d89eca | 2015-04-29 21:32:17 +0800 | [diff] [blame] | 187 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 188 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
| 189 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 190 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 191 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 192 | <entry key="-a" value-ref="allAppNameCompleter"/> |
| 193 | </optional-completers> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 194 | </command> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 195 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 196 | <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 197 | <completers> |
| 198 | <ref component-id="connectPointCompleter"/> |
| 199 | <ref component-id="connectPointCompleter"/> |
| 200 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 201 | <optional-completers> |
| 202 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 203 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 204 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 205 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 206 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 207 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 208 | </optional-completers> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 209 | </command> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 210 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 211 | <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/> |
Brian O'Connor | 5296b32 | 2014-10-23 14:59:05 -0700 | [diff] [blame] | 212 | <completers> |
| 213 | <ref component-id="connectPointCompleter"/> |
| 214 | <ref component-id="connectPointCompleter"/> |
Brian O'Connor | 5296b32 | 2014-10-23 14:59:05 -0700 | [diff] [blame] | 215 | </completers> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 216 | <optional-completers> |
| 217 | <entry key="-a" value-ref="allAppNameCompleter"/> |
| 218 | </optional-completers> |
Brian O'Connor | 5296b32 | 2014-10-23 14:59:05 -0700 | [diff] [blame] | 219 | </command> |
| 220 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 221 | <action class="org.onosproject.cli.net.GetStatistics"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 222 | <completers> |
| 223 | <ref component-id="connectPointCompleter"/> |
| 224 | </completers> |
alshabib | 23a8d7c | 2014-10-22 21:53:39 -0700 | [diff] [blame] | 225 | </command> |
| 226 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 227 | <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 228 | <completers> |
| 229 | <ref component-id="connectPointCompleter"/> |
| 230 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 231 | <optional-completers> |
| 232 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 233 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 234 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 235 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 236 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 237 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 238 | </optional-completers> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 239 | </command> |
| 240 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 241 | <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/> |
Michele Santuari | 4a33807 | 2014-11-05 18:38:55 +0100 | [diff] [blame] | 242 | <completers> |
| 243 | <ref component-id="connectPointCompleter"/> |
| 244 | </completers> |
| 245 | <optional-completers> |
| 246 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Pavlin Radoslavov | 70761df | 2015-03-09 11:05:49 -0700 | [diff] [blame] | 247 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 248 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 249 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 250 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 251 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Michele Santuari | 4a33807 | 2014-11-05 18:38:55 +0100 | [diff] [blame] | 252 | </optional-completers> |
| 253 | </command> |
| 254 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 255 | <action class="org.onosproject.cli.net.IntentPushTestCommand"/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 256 | <completers> |
| 257 | <ref component-id="connectPointCompleter"/> |
| 258 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 259 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 260 | </completers> |
| 261 | </command> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 262 | <command> |
Brian O'Connor | 66cfbfa | 2015-02-17 18:17:32 -0800 | [diff] [blame] | 263 | <action class="org.onosproject.cli.net.IntentCycleCommand"/> |
| 264 | <completers> |
| 265 | <ref component-id="connectPointCompleter"/> |
| 266 | <ref component-id="connectPointCompleter"/> |
| 267 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 66cfbfa | 2015-02-17 18:17:32 -0800 | [diff] [blame] | 268 | </completers> |
| 269 | </command> |
| 270 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 271 | <action class="org.onosproject.cli.net.RandomIntentCommand"/> |
Brian O'Connor | 6741a5f | 2014-11-19 20:40:11 -0800 | [diff] [blame] | 272 | <completers> |
| 273 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 6741a5f | 2014-11-19 20:40:11 -0800 | [diff] [blame] | 274 | </completers> |
| 275 | </command> |
| 276 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 277 | <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 278 | <completers> |
| 279 | <ref component-id="connectPointCompleter"/> |
| 280 | <ref component-id="connectPointCompleter"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 281 | </completers> |
| 282 | </command> |
| 283 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 284 | <action class="org.onosproject.cli.net.ResourceAvailableCommand"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 285 | <completers> |
| 286 | <ref component-id="connectPointCompleter"/> |
| 287 | <ref component-id="connectPointCompleter"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 288 | </completers> |
| 289 | </command> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 290 | <command> |
Ayaka Koshibe | 4699b29 | 2015-04-28 14:33:10 -0700 | [diff] [blame] | 291 | <action class="org.onosproject.cli.net.LinkResourceTestCommand"/> |
| 292 | <completers> |
| 293 | <ref component-id="connectPointCompleter"/> |
| 294 | <ref component-id="connectPointCompleter"/> |
| 295 | <null/> |
| 296 | </completers> |
| 297 | </command> |
| 298 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 299 | <action class="org.onosproject.cli.net.ClustersListCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 300 | </command> |
| 301 | <command> |
Jonathan Hart | 054da97 | 2015-02-18 17:30:28 -0800 | [diff] [blame] | 302 | <action class="org.onosproject.cli.net.PartitionsListCommand"/> |
| 303 | </command> |
| 304 | <command> |
Madan Jampani | a89f8f9 | 2015-04-01 14:39:54 -0700 | [diff] [blame] | 305 | <action class="org.onosproject.cli.net.MapsListCommand"/> |
| 306 | </command> |
| 307 | <command> |
Madan Jampani | b5d72d5 | 2015-04-03 16:53:50 -0700 | [diff] [blame] | 308 | <action class="org.onosproject.cli.net.CountersListCommand"/> |
| 309 | </command> |
| 310 | <command> |
Madan Jampani | bff6d8f | 2015-03-31 16:53:47 -0700 | [diff] [blame] | 311 | <action class="org.onosproject.cli.net.TransactionsCommand"/> |
| 312 | </command> |
| 313 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 314 | <action class="org.onosproject.cli.net.ClusterDevicesCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 315 | <completers> |
| 316 | <ref component-id="clusterIdCompleter"/> |
| 317 | </completers> |
| 318 | </command> |
| 319 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 320 | <action class="org.onosproject.cli.net.ClusterLinksCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 321 | <completers> |
| 322 | <ref component-id="clusterIdCompleter"/> |
| 323 | </completers> |
| 324 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 325 | |
| 326 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 327 | <action class="org.onosproject.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 328 | </command> |
Jonathan Hart | 61d4ebc | 2014-10-29 11:08:26 -0700 | [diff] [blame] | 329 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 330 | <action class="org.onosproject.cli.net.HostRemoveCommand"/> |
Thomas Vachuska | 3360160 | 2014-11-19 03:32:15 -0800 | [diff] [blame] | 331 | <completers> |
| 332 | <ref component-id="hostIdCompleter"/> |
Thomas Vachuska | 3360160 | 2014-11-19 03:32:15 -0800 | [diff] [blame] | 333 | </completers> |
| 334 | </command> |
| 335 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 336 | <action class="org.onosproject.cli.net.AddressBindingsListCommand"/> |
Jonathan Hart | 61d4ebc | 2014-10-29 11:08:26 -0700 | [diff] [blame] | 337 | </command> |
Jonathan Hart | eb8c947 | 2015-08-05 07:43:13 -0700 | [diff] [blame] | 338 | <command> |
| 339 | <action class="org.onosproject.cli.net.InterfacesListCommand"/> |
| 340 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 341 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 342 | <command> |
Jonathan Hart | 3260069 | 2015-03-09 10:38:40 -0700 | [diff] [blame] | 343 | <action class="org.onosproject.cli.net.GroupsListCommand"/> |
| 344 | </command> |
| 345 | |
| 346 | <command> |
sangho | 538108b | 2015-04-08 14:29:20 -0700 | [diff] [blame] | 347 | <action class="org.onosproject.cli.net.DevicePortStatsCommand"/> |
| 348 | </command> |
| 349 | |
| 350 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 351 | <action class="org.onosproject.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 352 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 353 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 354 | <ref component-id="deviceIdCompleter"/> |
| 355 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 356 | </command> |
| 357 | |
| 358 | <command> |
suibin zhang | cb7f0d1 | 2015-08-10 11:14:15 -0700 | [diff] [blame] | 359 | <action class="org.onosproject.cli.net.AddTestFlowsCommand"/> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 360 | </command> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 361 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 362 | <action class="org.onosproject.cli.net.LeaderCommand"/> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 363 | </command> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 364 | |
| 365 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 366 | <action class="org.onosproject.cli.net.WipeOutCommand"/> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 367 | </command> |
Michele Santuari | 4b6019e | 2014-12-19 11:31:45 +0100 | [diff] [blame] | 368 | <command> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 369 | <action class="org.onosproject.cli.net.AddMplsIntent"/> |
| 370 | <completers> |
| 371 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 2a6e445 | 2015-04-08 09:59:20 -0700 | [diff] [blame] | 372 | <ref component-id="connectPointCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 373 | </completers> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 374 | <optional-completers> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 375 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 376 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
| 377 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 378 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 379 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 380 | <entry key="-a" value-ref="allAppNameCompleter"/> |
| 381 | </optional-completers> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 382 | </command> |
Jonathan Hart | eb8c947 | 2015-08-05 07:43:13 -0700 | [diff] [blame] | 383 | |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 384 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 385 | <action class="org.onosproject.cli.net.GlobalLabelCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 386 | </command> |
| 387 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 388 | <action class="org.onosproject.cli.net.LabelResourceCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 389 | </command> |
| 390 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 391 | <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 392 | </command> |
| 393 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 394 | <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 395 | </command> |
| 396 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 397 | <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 398 | </command> |
| 399 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 400 | <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 401 | </command> |
| 402 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 403 | <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 404 | </command> |
| 405 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 406 | <action class="org.onosproject.cli.net.LabelReleaseCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 407 | </command> |
| 408 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 409 | <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 410 | </command> |
| 411 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 412 | <action class="org.onosproject.cli.net.LabelApplyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 413 | </command> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 414 | <!-- tunnel commands --> |
| 415 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 416 | <action class="org.onosproject.cli.net.TunnelBorrowCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 417 | </command> |
| 418 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 419 | <action class="org.onosproject.cli.net.TunnelReturnCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 420 | </command> |
| 421 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 422 | <action class="org.onosproject.cli.net.TunnelQueryCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 423 | </command> |
| 424 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 425 | <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 426 | </command> |
cheng fan | 7716ec9 | 2015-05-31 01:53:19 +0800 | [diff] [blame] | 427 | <command> |
| 428 | <action class="org.onosproject.cli.net.TunnelCreateCommand"/> |
| 429 | </command> |
| 430 | <command> |
| 431 | <action class="org.onosproject.cli.net.TunnelRemoveCommand"/> |
| 432 | </command> |
| 433 | <command> |
| 434 | <action class="org.onosproject.cli.net.TunnelUpdateCommand"/> |
| 435 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 436 | </command-bundle> |
| 437 | |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 438 | <bean id="permAppNameCompleter" class="org.onosproject.cli.security.PermissionApplicationNameCompleter"/> |
| 439 | <bean id="permCommandCompleter" class="org.onosproject.cli.security.PermissionCommandCompleter"/> |
| 440 | <bean id="permNameCompleter" class="org.onosproject.cli.security.PermissionNameCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 441 | <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 442 | <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 443 | <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/> |
Ray Milkey | d088e8a | 2015-04-07 14:56:57 -0700 | [diff] [blame] | 444 | <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 445 | <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/> |
| 446 | <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/> |
Ray Milkey | fb6655e | 2015-04-10 10:50:54 -0700 | [diff] [blame] | 447 | <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 448 | <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/> |
| 449 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
| 450 | <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/> |
| 451 | <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/> |
| 452 | <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/> |
Brian O'Connor | 264cb99 | 2015-06-04 17:16:57 -0700 | [diff] [blame] | 453 | <bean id="intentKeyCompleter" class="org.onosproject.cli.net.IntentKeyCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 454 | <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/> |
| 455 | <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 456 | <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 457 | <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/> |
| 458 | <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 459 | <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 460 | <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/> |
| 461 | <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/> |
| 462 | <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 463 | |
Thomas Vachuska | c40d463 | 2015-04-09 16:55:03 -0700 | [diff] [blame] | 464 | <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/> |
Flavio Castro | 4b51941 | 2015-07-24 12:57:59 -0700 | [diff] [blame] | 465 | <bean id="metricNameCompleter" class="org.onosproject.cli.MetricNameCompleter"/> |
Thomas Vachuska | c40d463 | 2015-04-09 16:55:03 -0700 | [diff] [blame] | 466 | <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/> |
| 467 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 468 | </blueprint> |