diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-01-08 15:58:56 +0100 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-01-08 15:58:56 +0100 |
commit | eae667d1481eabf46e489d28f029371fadf6e3fb (patch) | |
tree | d86ee31af3759da03914f80aa845bf0eef4ead15 /src/org/uic/ticket/api/spec | |
parent | Bug fix on passengerWithReducedMobility changed from boolean to Boolean (diff) | |
download | UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar.gz UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar.bz2 UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar.lz UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar.xz UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.tar.zst UIC-barcode-eae667d1481eabf46e489d28f029371fadf6e3fb.zip |
Diffstat (limited to 'src/org/uic/ticket/api/spec')
-rw-r--r-- | src/org/uic/ticket/api/spec/IIssuingDetail.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/uic/ticket/api/spec/IIssuingDetail.java b/src/org/uic/ticket/api/spec/IIssuingDetail.java index 1baaaae..21472ed 100644 --- a/src/org/uic/ticket/api/spec/IIssuingDetail.java +++ b/src/org/uic/ticket/api/spec/IIssuingDetail.java @@ -156,7 +156,7 @@ public interface IIssuingDetail { *
* @return the issued on line
*/
- public int getIssuedOnLine();
+ public Integer getIssuedOnLine();
/**
@@ -164,7 +164,7 @@ public interface IIssuingDetail { *
* @param issuedOnLine the new issued on line
*/
- public void setIssuedOnLine(int issuedOnLine);
+ public void setIssuedOnLine(Integer issuedOnLine);
/**
|