| 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; |
| } |
| |
| } |