Bug 3292: Invalid Range exception in setDpnId
[vpnservice.git] / vpnmanager / vpnmanager-api / src / main / java / org / opendaylight / vpnmanager / api / IVpnManager.java
index 56e7c7e45661b3121620f7dbab5fce2c0ffb0ad4..d3214304b64b45217f00f94a576e4421fd7bb716 100644 (file)
@@ -1,10 +1,11 @@
 package org.opendaylight.vpnmanager.api;
 
-import java.util.Collection;
+import java.math.BigInteger;
 
+import java.util.Collection;
 import org.opendaylight.fibmanager.api.IFibManager;
 
 public interface IVpnManager {
-    Collection<Long> getDpnsForVpn(long vpnId);
+    Collection<BigInteger> getDpnsForVpn(long vpnId);
     void setFibService(IFibManager fibManager);
 }