-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from naviqore/NAV-131-Extend-QueryConfig-for-…
…Raptor Nav 131 extend query config for raptor
- Loading branch information
Showing
44 changed files
with
1,075 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package ch.naviqore.app.dto; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@RequiredArgsConstructor | ||
@ToString | ||
@Getter | ||
public class RoutingInfo { | ||
|
||
final boolean supportsMaxNumTransfers; | ||
final boolean supportsMaxTravelTime; | ||
final boolean supportsMaxWalkingDuration; | ||
final boolean supportsMinTransferDuration; | ||
final boolean supportsAccessibility; | ||
final boolean supportsBikes; | ||
final boolean supportsTravelModes; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package ch.naviqore.app.dto; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@RequiredArgsConstructor | ||
@ToString | ||
@Getter | ||
public class ScheduleInfo { | ||
|
||
final boolean hasAccessibility; | ||
final boolean hasBikes; | ||
final boolean hasTravelModes; | ||
final ScheduleValidity scheduleValidity; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package ch.naviqore.app.dto; | ||
|
||
import lombok.AccessLevel; | ||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import org.springframework.format.annotation.DateTimeFormat; | ||
|
||
import java.time.LocalDate; | ||
|
||
@RequiredArgsConstructor(access = AccessLevel.PACKAGE) | ||
@Getter | ||
public class ScheduleValidity { | ||
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE) | ||
final LocalDate startDate; | ||
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE) | ||
final LocalDate endDate; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package ch.naviqore.app.dto; | ||
|
||
public enum TimeType { | ||
DEPARTURE, | ||
ARRIVAL | ||
ARRIVAL, | ||
DEPARTURE | ||
} |
Oops, something went wrong.