Interfacemgr: Added Unit Tests
[vpnservice.git] / interfacemgr / interfacemgr-impl / src / main / java / org / opendaylight / vpnservice / interfacemgr / IfmConstants.java
index 4cfa0005f798241dc2693a10f3dac94aca764c2f..add3af5b81a287d7f21878878778ce73e10995f7 100644 (file)
@@ -2,8 +2,10 @@ package org.opendaylight.vpnservice.interfacemgr;
 
 public class IfmConstants {
     public static final String IFM_IDPOOL_NAME = "interfaces";
+    public static final long IFM_IDPOOL_START = 1L;
+    public static final String IFM_IDPOOL_SIZE = "65535";
     public static final String OF_URI_PREFIX = "openflow:";
-    public static final String OF_URI_SEPARATOR = "openflow:";
-    public static final int DEFAULT_IFINDEX = 65535;
+    public static final String OF_URI_SEPARATOR = ":";
+    public static final int DEFAULT_IFINDEX = 65536;
 
 }