blob: c0a4b6fb7563e413389ca2d5bd54cba6fe46d4c2 [file] [log] [blame]
Yi Tseng2e5d99e2017-06-06 10:58:46 -07001<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2014-present Open Networking Foundation
Yi Tseng2e5d99e2017-06-06 10:58:46 -07003 ~
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 Kimd94ceea2017-11-29 19:03:02 +000021 <completers>
22 <ref component-id="dhcpRelayCounterCompleter"/>
23 <ref component-id="dhcpRelayResetCompleter"/>
24 </completers>
Yi Tseng2e5d99e2017-06-06 10:58:46 -070025 </command>
Kalhee Kimba366062017-11-07 16:32:09 +000026 <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 Kimd94ceea2017-11-29 19:03:02 +000035 <command>
36 <action class="org.onosproject.dhcprelay.cli.DhcpRelayAggCountersCommand"/>
37 <completers>
38 <ref component-id="dhcpRelayResetCompleter"/>
39 </completers>
40 </command>
Yi Tseng2e5d99e2017-06-06 10:58:46 -070041 </command-bundle>
Kalhee Kimd94ceea2017-11-29 19:03:02 +000042 <bean id="dhcpRelayCounterCompleter" class="org.onosproject.dhcprelay.cli.DhcpRelayCounterCompleter"/>
43 <bean id="dhcpRelayResetCompleter" class="org.onosproject.dhcprelay.cli.DhcpRelayResetCompleter"/>
Kalhee Kimba366062017-11-07 16:32:09 +000044</blueprint>