Dualstack support for L3VPN-two router design
[netvirt.git] / neutronvpn / api / src / main / java / org / opendaylight / netvirt / neutronvpn / api / utils / NeutronConstants.java
index 94dc8223b1e77d640da59b5a62e4c654050667c6..1a044284e72f8d921633a564f244094f55bdad99 100644 (file)
@@ -35,6 +35,7 @@ public interface NeutronConstants {
     String VNIC_TYPE_DIRECT = "direct";
     String BINDING_PROFILE_CAPABILITIES = "capabilities";
     String SWITCHDEV = "switchdev";
+    int MAX_ROUTERS_PER_BGPVPN = 2;
 
     Predicate<Port> IS_DHCP_PORT = port -> port != null
             && DEVICE_OWNER_DHCP.equals(port.getDeviceOwner());