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