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