sangho | 6703da2 | 2015-06-11 14:49:59 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Foundation |
sangho | 6703da2 | 2015-06-11 14:49:59 -0700 | [diff] [blame] | 3 | ~ |
| 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 |
| 7 | ~ |
| 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. |
| 15 | --> |
| 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"> |
Saurav Das | c88d466 | 2017-05-15 15:34:25 -0700 | [diff] [blame] | 19 | <!-- XXX revisit when we formally add policies |
sangho | 6703da2 | 2015-06-11 14:49:59 -0700 | [diff] [blame] | 20 | <command> |
| 21 | <action class="org.onosproject.segmentrouting.cli.TunnelListCommand"/> |
| 22 | </command> |
| 23 | <command> |
| 24 | <action class="org.onosproject.segmentrouting.cli.PolicyListCommand"/> |
| 25 | </command> |
| 26 | <command> |
| 27 | <action class="org.onosproject.segmentrouting.cli.PolicyAddCommand"/> |
| 28 | </command> |
| 29 | <command> |
| 30 | <action class="org.onosproject.segmentrouting.cli.PolicyRemoveCommand"/> |
| 31 | </command> |
| 32 | <command> |
| 33 | <action class="org.onosproject.segmentrouting.cli.TunnelAddCommand"/> |
| 34 | </command> |
sangho | 36c9d2c | 2015-06-24 09:37:40 -0700 | [diff] [blame] | 35 | <command> |
| 36 | <action class="org.onosproject.segmentrouting.cli.TunnelRemoveCommand"/> |
| 37 | </command> |
Saurav Das | 59232cf | 2016-04-27 18:35:50 -0700 | [diff] [blame] | 38 | <command> |
| 39 | <action class="org.onosproject.segmentrouting.cli.RerouteNetworkCommand"/> |
| 40 | </command> |
Saurav Das | c568c34 | 2018-01-25 09:49:01 -0800 | [diff] [blame] | 41 | --> |
Charles Chan | c81c45b | 2016-10-20 17:02:44 -0700 | [diff] [blame] | 42 | <command> |
| 43 | <action class="org.onosproject.segmentrouting.cli.DeviceSubnetListCommand"/> |
| 44 | </command> |
Saurav Das | c88d466 | 2017-05-15 15:34:25 -0700 | [diff] [blame] | 45 | <command> |
| 46 | <action class="org.onosproject.segmentrouting.cli.EcmpGraphCommand"/> |
| 47 | </command> |
| 48 | <command> |
Saurav Das | 7bcbe70 | 2017-06-13 15:35:54 -0700 | [diff] [blame] | 49 | <action class="org.onosproject.segmentrouting.cli.NextHopCommand"/> |
Saurav Das | c88d466 | 2017-05-15 15:34:25 -0700 | [diff] [blame] | 50 | </command> |
Saurav Das | ceccf24 | 2017-08-03 18:30:35 -0700 | [diff] [blame] | 51 | <command> |
| 52 | <action class="org.onosproject.segmentrouting.cli.VerifyGroupsCommand"/> |
| 53 | <completers> |
| 54 | <ref component-id="deviceIdCompleter"/> |
| 55 | </completers> |
| 56 | </command> |
Andreas Pantelopoulos | 27532cd | 2017-10-23 12:18:25 -0700 | [diff] [blame] | 57 | <command> |
| 58 | <action class="org.onosproject.segmentrouting.cli.PseudowireListCommand"/> |
| 59 | </command> |
| 60 | <command> |
| 61 | <action class="org.onosproject.segmentrouting.cli.PseudowireRemoveCommand"/> |
| 62 | <completers> |
| 63 | <ref component-id="pseudowireIdCompleter"/> |
| 64 | </completers> |
| 65 | </command> |
| 66 | <command> |
| 67 | <action class="org.onosproject.segmentrouting.cli.PseudowireAddCommand"/> |
| 68 | </command> |
Saurav Das | c568c34 | 2018-01-25 09:49:01 -0800 | [diff] [blame] | 69 | <command> |
| 70 | <action class="org.onosproject.segmentrouting.cli.LinkStateCommand"/> |
| 71 | </command> |
sangho | 6703da2 | 2015-06-11 14:49:59 -0700 | [diff] [blame] | 72 | </command-bundle> |
Saurav Das | ceccf24 | 2017-08-03 18:30:35 -0700 | [diff] [blame] | 73 | |
| 74 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
Andreas Pantelopoulos | 27532cd | 2017-10-23 12:18:25 -0700 | [diff] [blame] | 75 | <bean id="pseudowireIdCompleter" class="org.onosproject.segmentrouting.cli.PseudowireIdCompleter"/> |
Saurav Das | ceccf24 | 2017-08-03 18:30:35 -0700 | [diff] [blame] | 76 | |
sangho | 6703da2 | 2015-06-11 14:49:59 -0700 | [diff] [blame] | 77 | </blueprint> |
| 78 | |
| 79 | |