4040 * from trips.txt:
4141 *
4242 * <ol>
43- * <li>Service window extends past feed period: the feed validity period should cover every
44- * service window. A {@link ServiceWindowExtendsPastFeedPeriodNotice } is emitted once per
45- * service whose active date range extends outside the feed validity period, summarizing how
46- * many days fall before feed_start_date or after feed_end_date.
43+ * <li>Service window outside feed period: the feed validity period should cover every service
44+ * window. A {@link ServiceWindowOutsideFeedPeriodNotice } is emitted once per service whose
45+ * active date range extends outside the feed validity period, summarizing how many days fall
46+ * before feed_start_date or after feed_end_date.
4747 * <li>Feed valid beyond total service window: the feed validity period should not extend far
4848 * beyond the total service window. A {@link FeedValidBeyondTotalServiceWindowNotice} is
4949 * emitted when the feed start/end date exceeds the total service window bounds by more than
5353 * strictly after today's date.
5454 * </ol>
5555 *
56- * <p>Generated notices: {@link ServiceWindowExtendsPastFeedPeriodNotice }, {@link
56+ * <p>Generated notices: {@link ServiceWindowOutsideFeedPeriodNotice }, {@link
5757 * FeedValidBeyondTotalServiceWindowNotice}, {@link FutureCalendarNotice}.
5858 */
5959@ GtfsValidator
@@ -149,7 +149,7 @@ public void validate(NoticeContainer noticeContainer) {
149149 }
150150
151151 /**
152- * Emits a {@link ServiceWindowExtendsPastFeedPeriodNotice } if the service active window extends
152+ * Emits a {@link ServiceWindowOutsideFeedPeriodNotice } if the service active window extends
153153 * outside the feed validity period.
154154 */
155155 private static void checkServiceWindow (
@@ -170,7 +170,7 @@ private static void checkServiceWindow(
170170
171171 if (daysBeforeFeedStart > 0 || daysAfterFeedEnd > 0 ) {
172172 noticeContainer .addValidationNotice (
173- new ServiceWindowExtendsPastFeedPeriodNotice (
173+ new ServiceWindowOutsideFeedPeriodNotice (
174174 serviceId ,
175175 serviceStart .toString (),
176176 serviceEnd .toString (),
@@ -196,7 +196,7 @@ private static LocalDate latest(@Nullable LocalDate current, LocalDate candidate
196196 GtfsCalendarDateSchema .class ,
197197 GtfsFeedInfoSchema .class
198198 }))
199- static class ServiceWindowExtendsPastFeedPeriodNotice extends ValidationNotice {
199+ static class ServiceWindowOutsideFeedPeriodNotice extends ValidationNotice {
200200
201201 /** The service_id whose active window extends outside the feed validity period. */
202202 private final String serviceId ;
@@ -213,7 +213,7 @@ static class ServiceWindowExtendsPastFeedPeriodNotice extends ValidationNotice {
213213 /** Number of days the service window extends after feed_end_date (0 if none). */
214214 private final long daysAfterFeedEnd ;
215215
216- ServiceWindowExtendsPastFeedPeriodNotice (
216+ ServiceWindowOutsideFeedPeriodNotice (
217217 String serviceId ,
218218 String serviceWindowStart ,
219219 String serviceWindowEnd ,
0 commit comments