Yi Tseng | 2e5d99e | 2017-06-06 10:58:46 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2014-present Open Networking Foundation |
Yi Tseng | 2e5d99e | 2017-06-06 10:58:46 -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"> |
| 19 | <command> |
| 20 | <action class="org.onosproject.dhcprelay.cli.DhcpRelayCommand"/> |
Kalhee Kim | d94ceea | 2017-11-29 19:03:02 +0000 | [diff] [blame] | 21 | <completers> |
| 22 | <ref component-id="dhcpRelayCounterCompleter"/> |
| 23 | <ref component-id="dhcpRelayResetCompleter"/> |
| 24 | </completers> |
Yi Tseng | 2e5d99e | 2017-06-06 10:58:46 -0700 | [diff] [blame] | 25 | </command> |
Kalhee Kim | ba36606 | 2017-11-07 16:32:09 +0000 | [diff] [blame] | 26 | <command> |
| 27 | <action class="org.onosproject.dhcprelay.cli.DhcpFpmRoutesCommand"/> |
| 28 | </command> |
| 29 | <command> |
| 30 | <action class="org.onosproject.dhcprelay.cli.DhcpFpmAddCommand"/> |
| 31 | </command> |
| 32 | <command> |
| 33 | <action class="org.onosproject.dhcprelay.cli.DhcpFpmDeleteCommand"/> |
| 34 | </command> |
Kalhee Kim | d94ceea | 2017-11-29 19:03:02 +0000 | [diff] [blame] | 35 | <command> |
| 36 | <action class="org.onosproject.dhcprelay.cli.DhcpRelayAggCountersCommand"/> |
| 37 | <completers> |
| 38 | <ref component-id="dhcpRelayResetCompleter"/> |
| 39 | </completers> |
| 40 | </command> |
Yi Tseng | 2e5d99e | 2017-06-06 10:58:46 -0700 | [diff] [blame] | 41 | </command-bundle> |
Kalhee Kim | d94ceea | 2017-11-29 19:03:02 +0000 | [diff] [blame] | 42 | <bean id="dhcpRelayCounterCompleter" class="org.onosproject.dhcprelay.cli.DhcpRelayCounterCompleter"/> |
| 43 | <bean id="dhcpRelayResetCompleter" class="org.onosproject.dhcprelay.cli.DhcpRelayResetCompleter"/> |
Kalhee Kim | ba36606 | 2017-11-07 16:32:09 +0000 | [diff] [blame] | 44 | </blueprint> |