From 425bd35c736b7e1c0dbe5b3f9162e195b3be6018 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Thu, 25 Feb 2021 11:02:26 +0100 Subject: - bug fix on TicketType Enum - duplicate function getDocument removed - issuedOnLine null value allowed - maven install added (required renaming of some packages) --- .../barcode/ticket/api/impl/SimpleViaStation.java | 157 +++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 src/org/uic/barcode/ticket/api/impl/SimpleViaStation.java (limited to 'src/org/uic/barcode/ticket/api/impl/SimpleViaStation.java') diff --git a/src/org/uic/barcode/ticket/api/impl/SimpleViaStation.java b/src/org/uic/barcode/ticket/api/impl/SimpleViaStation.java new file mode 100644 index 0000000..da0d815 --- /dev/null +++ b/src/org/uic/barcode/ticket/api/impl/SimpleViaStation.java @@ -0,0 +1,157 @@ +/* + * + */ +package org.uic.barcode.ticket.api.impl; + +import java.util.Collection; +import java.util.LinkedHashSet; + +import org.uic.barcode.ticket.api.spec.IStationCodeTable; +import org.uic.barcode.ticket.api.spec.IViaStation; + + +/** + * The Class SimpleViaStation. + */ +public class SimpleViaStation implements IViaStation { + + /** The station code table. */ + protected IStationCodeTable stationCodeTable = IStationCodeTable.stationUIC; + + /** The station. */ + protected String station; + + /** The alternative routes. */ + protected CollectionalternativeRoutes = new LinkedHashSet(); + + /** The route. */ + protected Collectionroute = new LinkedHashSet(); + + /** The border. */ + protected boolean border = false; + + /** The carriers. */ + protected Collectioncarriers = new LinkedHashSet(); + + /** The route id. */ + protected int routeId; + + /** The series id. */ + protected int seriesId; + + /* (nicht-Javadoc) + * @see org.uic.ticket.api.spec.IViaStation#getStationCodeTable() + */ + public IStationCodeTable getStationCodeTable() { + return stationCodeTable; + } + + /* (nicht-Javadoc) + * @see org.uic.ticket.api.spec.IViaStation#setStationCodeTable(org.uic.ticket.api.asn.om.CodeTableType) + */ + public void setStationCodeTable(IStationCodeTable 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 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 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 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; + } + + + +} -- cgit v1.2.3