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

org.opentripplanner.model.plan.FareProductAware Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.model.plan;

import java.util.List;
import org.opentripplanner.model.fare.FareProductUse;

/**
 * An interface to signal that an entity (typically a leg) can have fares attached to it.
 */
public interface FareProductAware {
  /**
   * Returns a copy of the entity with fares added to it.
   */
  T decorateWithFareProducts(List fares);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy