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> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 24 | <action class="org.onosproject.cli.app.ApplicationsListCommand"/> |
| 25 | </command> |
| 26 | |
| 27 | <command> |
| 28 | <action class="org.onosproject.cli.app.ApplicationActivateCommand"/> |
| 29 | <completers> |
| 30 | <ref component-id="appNameCompleter"/> |
| 31 | <null/> |
| 32 | </completers> |
| 33 | </command> |
| 34 | |
| 35 | <command> |
| 36 | <action class="org.onosproject.cli.app.ApplicationDeactivateCommand"/> |
| 37 | <completers> |
| 38 | <ref component-id="appNameCompleter"/> |
| 39 | <null/> |
| 40 | </completers> |
| 41 | </command> |
| 42 | |
| 43 | <command> |
| 44 | <action class="org.onosproject.cli.app.ApplicationUninstallCommand"/> |
| 45 | <completers> |
| 46 | <ref component-id="appNameCompleter"/> |
| 47 | <null/> |
| 48 | </completers> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 49 | </command> |
| 50 | |
| 51 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 52 | <action class="org.onosproject.cli.MetricsListCommand"/> |
Yuta HIGUCHI | 6a46283 | 2014-11-23 23:56:03 -0800 | [diff] [blame] | 53 | </command> |
| 54 | |
tom | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 55 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 56 | <action class="org.onosproject.cli.TabletMemberCommand"/> |
Yuta HIGUCHI | 60731cb | 2014-11-11 01:34:46 -0800 | [diff] [blame] | 57 | </command> |
Yuta HIGUCHI | f0f2dfc | 2014-11-26 13:59:07 -0800 | [diff] [blame] | 58 | |
| 59 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 60 | <action class="org.onosproject.cli.TabletLeaderCommand"/> |
Yuta HIGUCHI | f0f2dfc | 2014-11-26 13:59:07 -0800 | [diff] [blame] | 61 | </command> |
| 62 | |
Yuta HIGUCHI | 23ab0fa | 2014-12-02 10:56:42 -0800 | [diff] [blame] | 63 | <!-- |
Yuta HIGUCHI | 60731cb | 2014-11-11 01:34:46 -0800 | [diff] [blame] | 64 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 65 | <action class="org.onosproject.cli.TabletAddCommand"/> |
Yuta HIGUCHI | 60731cb | 2014-11-11 01:34:46 -0800 | [diff] [blame] | 66 | <completers> |
| 67 | <ref component-id="nodeIdCompleter"/> |
| 68 | <null/> |
| 69 | <null/> |
| 70 | </completers> |
| 71 | </command> |
| 72 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 73 | <action class="org.onosproject.cli.TabletRemoveCommand"/> |
Yuta HIGUCHI | 60731cb | 2014-11-11 01:34:46 -0800 | [diff] [blame] | 74 | <completers> |
| 75 | <ref component-id="nodeIdCompleter"/> |
| 76 | <null/> |
| 77 | <null/> |
| 78 | </completers> |
| 79 | </command> |
Yuta HIGUCHI | 23ab0fa | 2014-12-02 10:56:42 -0800 | [diff] [blame] | 80 | --> |
Yuta HIGUCHI | 60731cb | 2014-11-11 01:34:46 -0800 | [diff] [blame] | 81 | |
| 82 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 83 | <action class="org.onosproject.cli.NodesListCommand"/> |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 84 | </command> |
Yuta HIGUCHI | 23ab0fa | 2014-12-02 10:56:42 -0800 | [diff] [blame] | 85 | <!-- |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 86 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 87 | <action class="org.onosproject.cli.NodeAddCommand"/> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 88 | </command> |
| 89 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 90 | <action class="org.onosproject.cli.NodeRemoveCommand"/> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 91 | </command> |
Yuta HIGUCHI | 23ab0fa | 2014-12-02 10:56:42 -0800 | [diff] [blame] | 92 | --> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 93 | |
| 94 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 95 | <action class="org.onosproject.cli.RolesCommand"/> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 96 | </command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 97 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 98 | <action class="org.onosproject.cli.MastersListCommand"/> |
Thomas Vachuska | e0f804a | 2014-10-27 23:40:48 -0700 | [diff] [blame] | 99 | </command> |
| 100 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 101 | <action class="org.onosproject.cli.BalanceMastersCommand"/> |
Thomas Vachuska | e02e11c | 2014-11-24 16:13:52 -0800 | [diff] [blame] | 102 | </command> |
| 103 | <command> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 104 | <action class="org.onosproject.cli.app.ApplicationIdListCommand"/> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 105 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 106 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 107 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 108 | <action class="org.onosproject.cli.net.DevicesListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 109 | </command> |
| 110 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 111 | <action class="org.onosproject.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 112 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 113 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 114 | <null/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 115 | </completers> |
| 116 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 117 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 118 | <action class="org.onosproject.cli.net.DeviceRemoveCommand"/> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 119 | <completers> |
| 120 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 121 | <null/> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 122 | </completers> |
| 123 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 124 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 125 | <action class="org.onosproject.cli.net.DeviceRoleCommand"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 126 | <completers> |
| 127 | <ref component-id="deviceIdCompleter"/> |
tom | a6235a5 | 2014-10-15 13:25:39 -0700 | [diff] [blame] | 128 | <ref component-id="nodeIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 129 | <ref component-id="roleCompleter"/> |
| 130 | <null/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 131 | </completers> |
| 132 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 133 | |
| 134 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 135 | <action class="org.onosproject.cli.net.LinksListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 136 | <completers> |
| 137 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 138 | <null/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 139 | </completers> |
| 140 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -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.TopologyCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 144 | </command> |
| 145 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 146 | <action class="org.onosproject.cli.net.PathListCommand"/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 147 | <completers> |
| 148 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 149 | <ref component-id="deviceIdCompleter"/> |
| 150 | <null/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 151 | </completers> |
| 152 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 153 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 154 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 155 | <action class="org.onosproject.cli.net.IntentsListCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 156 | </command> |
| 157 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 158 | <action class="org.onosproject.cli.net.IntentRemoveCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 159 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 160 | <ref component-id="intentIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 161 | <null/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 162 | </completers> |
| 163 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 164 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 165 | <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 166 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 167 | <ref component-id="hostIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 168 | <ref component-id="hostIdCompleter"/> |
| 169 | <null/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 170 | </completers> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 171 | </command> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 172 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 173 | <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 174 | <completers> |
| 175 | <ref component-id="connectPointCompleter"/> |
| 176 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 177 | <null/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 178 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 179 | <optional-completers> |
| 180 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 181 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 182 | </optional-completers> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 183 | </command> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 184 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 185 | <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/> |
Brian O'Connor | 5296b32 | 2014-10-23 14:59:05 -0700 | [diff] [blame] | 186 | <completers> |
| 187 | <ref component-id="connectPointCompleter"/> |
| 188 | <ref component-id="connectPointCompleter"/> |
| 189 | <null/> |
| 190 | </completers> |
| 191 | </command> |
| 192 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 193 | <action class="org.onosproject.cli.net.GetStatistics"/> |
alshabib | 23a8d7c | 2014-10-22 21:53:39 -0700 | [diff] [blame] | 194 | <completers> |
| 195 | <ref component-id="connectPointCompleter"/> |
| 196 | </completers> |
| 197 | </command> |
| 198 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 199 | <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 200 | <completers> |
| 201 | <ref component-id="connectPointCompleter"/> |
| 202 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 203 | <optional-completers> |
| 204 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 205 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 206 | </optional-completers> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 207 | </command> |
| 208 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 209 | <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/> |
Michele Santuari | 4a33807 | 2014-11-05 18:38:55 +0100 | [diff] [blame] | 210 | <completers> |
| 211 | <ref component-id="connectPointCompleter"/> |
| 212 | </completers> |
| 213 | <optional-completers> |
| 214 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 215 | </optional-completers> |
| 216 | </command> |
| 217 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 218 | <action class="org.onosproject.cli.net.IntentPushTestCommand"/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 219 | <completers> |
| 220 | <ref component-id="connectPointCompleter"/> |
| 221 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 222 | <ref component-id="nullCompleter"/> |
| 223 | <null/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 224 | </completers> |
| 225 | </command> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 226 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 227 | <action class="org.onosproject.cli.net.RandomIntentCommand"/> |
Brian O'Connor | 6741a5f | 2014-11-19 20:40:11 -0800 | [diff] [blame] | 228 | <completers> |
| 229 | <ref component-id="nullCompleter"/> |
| 230 | <null/> |
| 231 | </completers> |
| 232 | </command> |
| 233 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 234 | <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 235 | <completers> |
| 236 | <ref component-id="connectPointCompleter"/> |
| 237 | <ref component-id="connectPointCompleter"/> |
| 238 | <null/> |
| 239 | </completers> |
| 240 | </command> |
| 241 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 242 | <action class="org.onosproject.cli.net.ResourceAvailableCommand"/> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 243 | <completers> |
| 244 | <ref component-id="connectPointCompleter"/> |
| 245 | <ref component-id="connectPointCompleter"/> |
| 246 | <null/> |
| 247 | </completers> |
| 248 | </command> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 249 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 250 | <action class="org.onosproject.cli.net.ClustersListCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 251 | </command> |
| 252 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 253 | <action class="org.onosproject.cli.net.ClusterDevicesCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 254 | <completers> |
| 255 | <ref component-id="clusterIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 256 | <null/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 257 | </completers> |
| 258 | </command> |
| 259 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 260 | <action class="org.onosproject.cli.net.ClusterLinksCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 261 | <completers> |
| 262 | <ref component-id="clusterIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 263 | <null/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 264 | </completers> |
| 265 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 266 | |
| 267 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 268 | <action class="org.onosproject.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 269 | </command> |
Jonathan Hart | 61d4ebc | 2014-10-29 11:08:26 -0700 | [diff] [blame] | 270 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 271 | <action class="org.onosproject.cli.net.HostRemoveCommand"/> |
Thomas Vachuska | 3360160 | 2014-11-19 03:32:15 -0800 | [diff] [blame] | 272 | <completers> |
| 273 | <ref component-id="hostIdCompleter"/> |
| 274 | <null/> |
| 275 | </completers> |
| 276 | </command> |
| 277 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 278 | <action class="org.onosproject.cli.net.AddressBindingsListCommand"/> |
Jonathan Hart | 61d4ebc | 2014-10-29 11:08:26 -0700 | [diff] [blame] | 279 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 280 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 281 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 282 | <action class="org.onosproject.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 283 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 284 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 285 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 286 | <null/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 287 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 288 | </command> |
| 289 | |
| 290 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 291 | <action class="org.onosproject.cli.net.AddFlowsCommand"/> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 292 | </command> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 293 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 294 | <action class="org.onosproject.cli.net.LeaderCommand"/> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 295 | </command> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 296 | |
| 297 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 298 | <action class="org.onosproject.cli.net.WipeOutCommand"/> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 299 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 300 | </command-bundle> |
| 301 | |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 302 | <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 303 | <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/> |
| 304 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
| 305 | <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/> |
| 306 | <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/> |
| 307 | <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/> |
| 308 | <bean id="intentIdCompleter" class="org.onosproject.cli.net.IntentIdCompleter"/> |
| 309 | <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/> |
| 310 | <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 311 | <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 312 | <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/> |
| 313 | <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 314 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 315 | </blueprint> |