From b17ce13cc31abd088088bf8ab26cc924a6a36585 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Tue, 28 Jul 2020 17:57:25 +0200 Subject: Draft of the new DOSIPAS included --- src/org/uic/ticket/api/spec/IStationCodeTable.java | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/org/uic/ticket/api/spec/IStationCodeTable.java (limited to 'src/org/uic/ticket/api/spec/IStationCodeTable.java') diff --git a/src/org/uic/ticket/api/spec/IStationCodeTable.java b/src/org/uic/ticket/api/spec/IStationCodeTable.java new file mode 100644 index 0000000..445a773 --- /dev/null +++ b/src/org/uic/ticket/api/spec/IStationCodeTable.java @@ -0,0 +1,25 @@ +package org.uic.ticket.api.spec; + + public enum IStationCodeTable { + + stationUIC("stationUIC"), + stationUICReservation("stationUICReservation"), + stationERA("stationERA"), + localCarrierStationCodeTable("localCarrierStationCodeTable"), + proprietaryIssuerStationCodeTable("proprietaryIssuerStationCodeTable"); + + public String text; + + IStationCodeTable(String text) { + this.text = text; + } + + public String toString(){ + return text; + } + + + } + + + -- cgit v1.2.3