diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-01-05 11:06:35 +0100 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-01-05 11:06:35 +0100 |
commit | a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f (patch) | |
tree | 7ff7413b456b2c694ddf611911676ef4ebf8ee9d /src/org/uic/ticket/api/spec | |
parent | UTC offset of valid from / until dates in Pass (diff) | |
download | UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar.gz UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar.bz2 UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar.lz UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar.xz UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.tar.zst UIC-barcode-a2646bc8c28ffdf90c0d6bc5c1162e78d5a1aa4f.zip |
Diffstat (limited to 'src/org/uic/ticket/api/spec')
-rw-r--r-- | src/org/uic/ticket/api/spec/ITraveler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/uic/ticket/api/spec/ITraveler.java b/src/org/uic/ticket/api/spec/ITraveler.java index 498a7e3..35d229d 100644 --- a/src/org/uic/ticket/api/spec/ITraveler.java +++ b/src/org/uic/ticket/api/spec/ITraveler.java @@ -174,14 +174,14 @@ public interface ITraveler { *
* @return true, if is passenger with reduced mobility
*/
- public boolean isPassengerWithReducedMobility();
+ public Boolean isPassengerWithReducedMobility();
/**
* Sets the passenger with reduced mobility.
*
* @param passengerWithReducedMobility the new passenger with reduced mobility
*/
- public void setPassengerWithReducedMobility(boolean passengerWithReducedMobility);
+ public void setPassengerWithReducedMobility(Boolean passengerWithReducedMobility);
/**
* Gets the country of residence (numeric ISO country code) .
|