- Timestamp:
- 02/05/09 15:29:31 (19 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tools/routingservice/trunk/src/jp/co/orkney/restlet/WebRouting.java
r257 r258 76 76 static final String CLOSEST_EDGE = "closest_edge"; 77 77 static final String SHORTEST_PATH = "shortest_path"; 78 static final String SHORTEST_WALK = "shortest_walk"; 78 79 static final String DRIVING_DISTANCE = "driving_distance"; 79 80 static final String TSP = "traveling_sales_person"; … … 235 236 else if (configuration.getService().getName().equals(SHORTEST_PATH)) 236 237 action = new ShortestPath(configuration, connection, ioHelper, log); 238 else if (configuration.getService().getName().equals(SHORTEST_WALK)) 239 action = new ShortestPath(configuration, connection, ioHelper, log); 237 240 else if (configuration.getService().getName().equals(DRIVING_DISTANCE)) 238 241 action = new DrivingDistance(configuration, connection, ioHelper, log);
