Cleanup interfaces and fix port state issue
diff --git a/src/main/java/net/floodlightcontroller/routing/TopoRouteServiceImpl.java b/src/main/java/net/floodlightcontroller/routing/TopoRouteServiceImpl.java
index 42ce6a8..2ba6097 100644
--- a/src/main/java/net/floodlightcontroller/routing/TopoRouteServiceImpl.java
+++ b/src/main/java/net/floodlightcontroller/routing/TopoRouteServiceImpl.java
@@ -8,14 +8,14 @@
public class TopoRouteServiceImpl implements ITopoRouteService {
@Override
- public List<NodePortTuple> GetShortestPath(NodePortTuple src,
+ public List<NodePortTuple> getShortestPath(NodePortTuple src,
NodePortTuple dest) {
// TODO Auto-generated method stub
return null;
}
@Override
- public Boolean RouteExists(NodePortTuple src, NodePortTuple dest) {
+ public Boolean routeExists(NodePortTuple src, NodePortTuple dest) {
// TODO Auto-generated method stub
return null;
}