All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.routing.api.RoutingService Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.routing.api;

import org.opentripplanner.routing.api.request.RouteRequest;
import org.opentripplanner.routing.api.request.RouteViaRequest;
import org.opentripplanner.routing.api.response.RoutingResponse;
import org.opentripplanner.routing.api.response.ViaRoutingResponse;

public interface RoutingService {
  RoutingResponse route(RouteRequest request);

  /**
   * @deprecated We will replace the complex via-search with a simpler version part of the
   *      existing trip search.
   */
  @Deprecated
  ViaRoutingResponse route(RouteViaRequest request);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy