| 1234567891011121314151617181920212223242526 |
- package com.pathfinder.api;
-
- import java.rmi.Remote;
- import java.util.List;
- import java.util.Properties;
-
- /**
- * Part of the external graph traversal API exposed by the routing team
- * and used by us (booking and tracking team).
- *
- */
- public interface GraphTraversalService extends Remote {
-
- /**
- * @param origin origin point
- * @param destination destination point
- * @param limitations restrictions on the path selection, as key-value according to some API specification
- * @return A list of transit paths
- * @throws java.rmi.RemoteException RMI problem
- */
- List<TransitPath> findShortestPath(String origin,
- String destination,
- Properties limitations);
-
- }
|