
org.opentripplanner.model.plan.AlertsAware Maven / Gradle / Ivy
The newest version!
package org.opentripplanner.model.plan;
import java.util.Set;
import org.opentripplanner.routing.alertpatch.TransitAlert;
/**
* An interface to signal that an entity (typically a leg) can have alerts attached to it.
*/
public interface AlertsAware {
Set getTransitAlerts();
/**
* Returns a copy of the entity with alerts added to it.
*/
T decorateWithAlerts(Set alerts);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy