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/impl | |
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/impl')
-rw-r--r-- | src/org/uic/ticket/api/impl/SimpleTraveler.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/uic/ticket/api/impl/SimpleTraveler.java b/src/org/uic/ticket/api/impl/SimpleTraveler.java index ef60dd7..7451b4c 100644 --- a/src/org/uic/ticket/api/impl/SimpleTraveler.java +++ b/src/org/uic/ticket/api/impl/SimpleTraveler.java @@ -53,7 +53,7 @@ public class SimpleTraveler implements ITraveler { protected IPassengerType passengerType;
/** The passenger with reduced mobility. */
- protected boolean passengerWithReducedMobility = false;
+ protected boolean passengerWithReducedMobility;
/** The country of residence. */
protected int countryOfResidence = 0;
@@ -225,14 +225,14 @@ public class SimpleTraveler implements ITraveler { /* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITraveler#isPassengerWithReducedMobility()
*/
- public boolean isPassengerWithReducedMobility() {
+ public Boolean isPassengerWithReducedMobility() {
return passengerWithReducedMobility;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITraveler#setPassengerWithReducedMobility(boolean)
*/
- public void setPassengerWithReducedMobility(boolean passengerWithReducedMobility) {
+ public void setPassengerWithReducedMobility(Boolean passengerWithReducedMobility) {
this.passengerWithReducedMobility = passengerWithReducedMobility;
}
|