
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