summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/spec/IViaStation.java
diff options
context:
space:
mode:
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);
+
+
}