summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimpleViaStation.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/SimpleViaStation.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/SimpleViaStation.java')
-rw-r--r--src/org/uic/ticket/api/impl/SimpleViaStation.java157
1 files changed, 157 insertions, 0 deletions
diff --git a/src/org/uic/ticket/api/impl/SimpleViaStation.java b/src/org/uic/ticket/api/impl/SimpleViaStation.java
new file mode 100644
index 0000000..a60ff8b
--- /dev/null
+++ b/src/org/uic/ticket/api/impl/SimpleViaStation.java
@@ -0,0 +1,157 @@
+/*
+ *
+ */
+package org.uic.ticket.api.impl;
+
+import java.util.Collection;
+import java.util.LinkedHashSet;
+
+import org.uic.ticket.api.asn.omv1.CodeTableType;
+import org.uic.ticket.api.spec.IViaStation;
+
+// TODO: Auto-generated Javadoc
+/**
+ * The Class SimpleViaStation.
+ */
+public class SimpleViaStation implements IViaStation {
+
+ /** The station code table. */
+ protected CodeTableType stationCodeTable = CodeTableType.stationUIC;
+
+ /** The station. */
+ protected String station;
+
+ /** The alternative routes. */
+ protected Collection<IViaStation>alternativeRoutes = new LinkedHashSet<IViaStation>();
+
+ /** The route. */
+ protected Collection<IViaStation>route = new LinkedHashSet<IViaStation>();
+
+ /** The border. */
+ protected boolean border = false;
+
+ /** The carriers. */
+ protected Collection<String>carriers = new LinkedHashSet<String>();
+
+ /** The route id. */
+ protected int routeId;
+
+ /** The series id. */
+ protected int seriesId;
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getStationCodeTable()
+ */
+ public CodeTableType getStationCodeTable() {
+ return stationCodeTable;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#setStationCodeTable(org.uic.ticket.api.asn.om.CodeTableType)
+ */
+ public void setStationCodeTable(CodeTableType stationCodeTable) {
+ this.stationCodeTable = stationCodeTable;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getStation()
+ */
+ public String getStation() {
+ return station;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#setStation(java.lang.String)
+ */
+ public void setStation(String station) {
+ this.station = station;
+ }
+
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getAlternativeRoutes()
+ */
+ public Collection<IViaStation> getAlternativeRoutes() {
+ return alternativeRoutes;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#addAlternativeRoute(org.uic.ticket.api.spec.IViaStation)
+ */
+ public void addAlternativeRoute(IViaStation route) {
+ this.alternativeRoutes.add(route);
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getRoute()
+ */
+ public Collection<IViaStation> getRoute() {
+ return route;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#addRouteStation(org.uic.ticket.api.spec.IViaStation)
+ */
+ public void addRouteStation(IViaStation viaStation) {
+ this.route.add(viaStation);
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#isBorder()
+ */
+ public boolean isBorder() {
+ return border;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#setBorder(boolean)
+ */
+ public void setBorder(boolean border) {
+ this.border = border;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getCarriers()
+ */
+ public Collection<String> getCarriers() {
+ return carriers;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#addCarrier(int)
+ */
+ public void addCarrier(String carrier) {
+ this.carriers.add(carrier);
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getRouteId()
+ */
+ public int getRouteId() {
+ return routeId;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#setRouteId(int)
+ */
+ public void setRouteId(int routeId) {
+ this.routeId = routeId;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#getSeriesId()
+ */
+ public int getSeriesId() {
+ return seriesId;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IViaStation#setSeriesId(int)
+ */
+ public void setSeriesId(int seriesId) {
+ this.seriesId = seriesId;
+ }
+
+
+
+}