summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2021-06-29 16:26:36 +0200
committerGitHub <noreply@github.com>2021-06-29 16:26:36 +0200
commit27d114203f6edaf8aea75ee710bd87f32d79f003 (patch)
tree794e40b39e154adef8e471ab8774c8a68bd3e434 /src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
parentDelete uicBarcodeFCBv2.0.asn (diff)
parent- test for FCB version 3 (diff)
downloadUIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar.gz
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar.bz2
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar.lz
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar.xz
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.tar.zst
UIC-barcode-27d114203f6edaf8aea75ee710bd87f32d79f003.zip
Diffstat (limited to 'src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java')
-rw-r--r--src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java b/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
index 34900a8..3590aa0 100644
--- a/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
+++ b/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
@@ -166,5 +166,35 @@ public interface IViaStation extends IRegionalValidity {
*/
public void setSeriesId(int seriesId);
+
+ /**
+ * Gets the included service brands.
+ *
+ * @return the included service brands
+ */
+ public Collection<Integer> getIncludedServiceBrands();
+
+ /**
+ * Adds the included service brand.
+ *
+ * @param includedServiceBrand the included service brand
+ */
+ public void addIncludedServiceBrand(Integer includedServiceBrand);
+
+ /**
+ * Gets the excluded service brands.
+ *
+ * @return the excluded service brands
+ */
+ public Collection<Integer> getExcludedServiceBrands();
+
+ /**
+ * Adds the excluded service brand.
+ *
+ * @param excludedServiceBrand the excluded service brand
+ */
+ public void addExcludedServiceBrand(Integer excludedServiceBrand);
+
+
}