blob: 42ce6a8ebc408d13f79bb2c4ea82fac90d19911f [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;
}
}