summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-01-03 10:47:21 +0100
committerGitHub <noreply@github.com>2020-01-03 10:47:21 +0100
commitc3ee0f35f58125a7a2b2e29ac8db8abc169f1b87 (patch)
tree3f30e28833d113bd4be1515da247c45911a0d89a /src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java
parentasn.1 java model (diff)
downloadUIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.gz
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.bz2
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.lz
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.xz
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.tar.zst
UIC-barcode-c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87.zip
Diffstat (limited to 'src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java')
-rw-r--r--src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java b/src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java
new file mode 100644
index 0000000..726b069
--- /dev/null
+++ b/src/org/uic/ticket/api/impl/SimpleSeriesDataDetails.java
@@ -0,0 +1,64 @@
+package org.uic.ticket.api.impl;
+
+import org.uic.ticket.api.spec.ISeriesDataDetails;
+
+public class SimpleSeriesDataDetails implements ISeriesDataDetails {
+
+
+ protected int offerIdentification;
+
+ /** The supplying carrier. */
+ protected int supplyingCarrier;
+
+ /** The series. */
+ protected int series;
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#getSupplyingCarrier()
+ */
+ public int getSupplyingCarrier() {
+ return supplyingCarrier;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#setSupplyingCarrier(int)
+ */
+ public void setSupplyingCarrier(int supplyingCarrier) {
+ this.supplyingCarrier = supplyingCarrier;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#getOfferIdentification()
+ */
+ public int getOfferIdentification() {
+ return offerIdentification;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#setOfferIdentification(int)
+ */
+ public void setOfferIdentification(int offerIdentification) {
+ this.offerIdentification = offerIdentification;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#getSeries()
+ */
+ public int getSeries() {
+ return series;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.ITariff#setSeries(int)
+ */
+ public void setSeries(int series) {
+ this.series = series;
+ }
+
+}