Squashed commit of the following:
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / VlanConfigurationCache.java
index 83497bf4de8e2e27eb29fe1ebcf6aa5fc2002d9a..529349d6ec0cbbb7fb613c95a8a57b6ae20ea188 100644 (file)
@@ -10,7 +10,7 @@
 
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
 
 /**
  * This cache stores the VLAN assignments used for tenant separation within a vSwitch
@@ -20,7 +20,7 @@ public interface VlanConfigurationCache {
 
     /**
      * Assigns a free VLAN ID for the given tenant network
-     * @param node an Open vSwitch {@link org.opendaylight.controller.sal.core.Node}
+     * @param node an Open vSwitch {@link Node}
      * @param networkId the Neutron Network ID
      * @return a VLAN ID or 0 in case of an error
      */
@@ -28,7 +28,7 @@ public interface VlanConfigurationCache {
 
     /**
      * Recovers an assigned VLAN ID when it is no longer required
-     * @param node an Open vSwitch {@link org.opendaylight.controller.sal.core.Node}
+     * @param node an Open vSwitch {@link Node}
      * @param networkId the Neutron Network ID
      * @return the reclaimed VLAN ID or 0 in case of an error
      */
@@ -36,7 +36,7 @@ public interface VlanConfigurationCache {
 
     /**
      * Returns a VLAN ID assigned to a given tenant network
-     * @param node an Open vSwitch {@link org.opendaylight.controller.sal.core.Node}
+     * @param node an Open vSwitch {@link Node}
      * @param networkId the Neutron Network ID
      * @return the VLAN ID or 0 in case of an error
      */