Skip to content
Snippets Groups Projects
Commit 03460cc8 authored by Srinivasan Ramasubramanian's avatar Srinivasan Ramasubramanian
Browse files

Removing Long objects in IRoutingService.

parent 96b2f564
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,9 @@ import net.floodlightcontroller.routing.Route;
public interface IRoutingService extends IFloodlightService {
public Route getRoute(Long srcDpid, Long dstDpid);
public Route getRoute(long src, long dst);
public boolean routeExists(long src, long dst);
public BroadcastTree getBroadcastTreeForCluster(long clusterId);
public BroadcastTree getBroadcastTreeForCluster(long cluster);
}
......@@ -103,7 +103,7 @@ public class RoutingImpl
}
@Override
public Route getRoute(Long srcId, Long dstId) {
public Route getRoute(long srcId, long dstId) {
lock.readLock().lock();
RouteId id = new RouteId(srcId, dstId);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment