Renamed interface name (for consistency with the rest of the code):

GetShortestpath -> GetShortestPath
diff --git a/src/main/java/net/floodlightcontroller/topology/web/RouteResource.java b/src/main/java/net/floodlightcontroller/topology/web/RouteResource.java
index 56c9bf3..fe33f47 100644
--- a/src/main/java/net/floodlightcontroller/topology/web/RouteResource.java
+++ b/src/main/java/net/floodlightcontroller/topology/web/RouteResource.java
@@ -51,7 +51,7 @@
         }
 	*/
 	List<NodePortTuple> result =
-	    onos_routing.GetShortestpath(new NodePortTuple(longSrcDpid, shortSrcPort),
+	    onos_routing.GetShortestPath(new NodePortTuple(longSrcDpid, shortSrcPort),
 					 new NodePortTuple(longDstDpid, shortDstPort));
 	if ((result != null) && (result.size() > 0)) {
 	    return result;