Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2016 Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <drivers> |
| 18 | <!--This driver is for simulated NETCONF devices through of-config tool on top og OVSDB--> |
| 19 | <driver name="ovs-netconf" extends="default,ovs" |
| 20 | manufacturer="" hwVersion="" swVersion=""> |
| 21 | <behaviour api="org.onosproject.net.behaviour.ControllerConfig" |
| 22 | impl="org.onosproject.drivers.netconf.NetconfControllerConfig"/> |
| 23 | <behaviour api="org.onosproject.net.behaviour.ConfigGetter" |
| 24 | impl="org.onosproject.drivers.netconf.NetconfConfigGetter"/> |
Andreas Papazois | c93117d | 2016-01-13 15:19:27 +0200 | [diff] [blame] | 25 | <behaviour api="org.onosproject.net.behaviour.ConfigSetter" |
| 26 | impl="org.onosproject.drivers.netconf.NetconfConfigSetter"/> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 27 | </driver> |
| 28 | <driver name="netconf" extends="default"> |
| 29 | <behaviour api="org.onosproject.net.behaviour.ConfigGetter" |
| 30 | impl="org.onosproject.drivers.netconf.NetconfConfigGetter"/> |
Andreas Papazois | c93117d | 2016-01-13 15:19:27 +0200 | [diff] [blame] | 31 | <behaviour api="org.onosproject.net.behaviour.ConfigSetter" |
| 32 | impl="org.onosproject.drivers.netconf.NetconfConfigSetter"/> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 33 | </driver> |
| 34 | </drivers> |
| 35 | |