Pankaj Berde | 5024ec1 | 2013-01-31 17:07:29 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.routing; |
| 2 | |
| 3 | import java.util.List; |
| 4 | |
| 5 | import net.floodlightcontroller.core.INetMapTopologyService.ITopoRouteService; |
| 6 | import net.floodlightcontroller.topology.NodePortTuple; |
| 7 | |
| 8 | public class TopoRouteServiceImpl implements ITopoRouteService { |
| 9 | |
| 10 | @Override |
| 11 | public List<NodePortTuple> GetShortestPath(NodePortTuple src, |
| 12 | NodePortTuple dest) { |
| 13 | // TODO Auto-generated method stub |
| 14 | return null; |
| 15 | } |
| 16 | |
| 17 | @Override |
| 18 | public Boolean RouteExists(NodePortTuple src, NodePortTuple dest) { |
| 19 | // TODO Auto-generated method stub |
| 20 | return null; |
| 21 | } |
| 22 | |
| 23 | } |