blob: 2ba60971b4346d9d55c9ab3014a6cb234c7a5807 [file] [log] [blame]
package net.floodlightcontroller.routing;
import java.util.List;
import net.floodlightcontroller.core.INetMapTopologyService.ITopoRouteService;
import net.floodlightcontroller.topology.NodePortTuple;
public class TopoRouteServiceImpl implements ITopoRouteService {
@Override
public List<NodePortTuple> getShortestPath(NodePortTuple src,
NodePortTuple dest) {
// TODO Auto-generated method stub
return null;
}
@Override
public Boolean routeExists(NodePortTuple src, NodePortTuple dest) {
// TODO Auto-generated method stub
return null;
}
}