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