From c3ee0f35f58125a7a2b2e29ac8db8abc169f1b87 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Fri, 3 Jan 2020 10:47:21 +0100 Subject: api implementation --- src/org/uic/ticket/api/impl/SimpleViaStation.java | 157 ++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 src/org/uic/ticket/api/impl/SimpleViaStation.java (limited to 'src/org/uic/ticket/api/impl/SimpleViaStation.java') 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 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 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 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