summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/spec/ITravelerDetail.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2021-02-25 11:02:26 +0100
committerCGantert345 <57003061+CGantert345@users.noreply.github.com>2021-02-25 11:02:26 +0100
commit425bd35c736b7e1c0dbe5b3f9162e195b3be6018 (patch)
treebc4668aa125fb0a15518d464a1738c6b05e56d07 /src/org/uic/ticket/api/spec/ITravelerDetail.java
parentissuerOnLine changed from int to Integer as it is optional (diff)
downloadUIC-barcode-1.2.tar
UIC-barcode-1.2.tar.gz
UIC-barcode-1.2.tar.bz2
UIC-barcode-1.2.tar.lz
UIC-barcode-1.2.tar.xz
UIC-barcode-1.2.tar.zst
UIC-barcode-1.2.zip
Diffstat (limited to 'src/org/uic/ticket/api/spec/ITravelerDetail.java')
-rw-r--r--src/org/uic/ticket/api/spec/ITravelerDetail.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/org/uic/ticket/api/spec/ITravelerDetail.java b/src/org/uic/ticket/api/spec/ITravelerDetail.java
deleted file mode 100644
index 9368bc2..0000000
--- a/src/org/uic/ticket/api/spec/ITravelerDetail.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- *
- */
-package org.uic.ticket.api.spec;
-
-
-import java.util.Set;
-
-/**
- * The Interface ITravelerDetail.
- *
- * ITravelerDetail provides a list of traveler data.
- */
-public interface ITravelerDetail {
-
- /**
- * Gets the group name.
- *
- * @return the group name
- */
- public String getGroupName() ;
-
- /**
- * Sets the group name.
- *
- * @param groupName the new group name
- */
- public void setGroupName(String groupName) ;
-
- /**
- * Adds the traveler.
- *
- * @param traveler the traveler
- */
- public void addTraveler (ITraveler traveler) ;
-
- /**
- * Gets the travelers.
- *
- * @return the travelers
- */
- public Set<ITraveler> getTravelers() ;
-
- /**
- * Gets the preferred language.
- * ISO 639-1 coding of the language preferred for the traveler / ticket holder
- *
- * @return the preferred language
- */
- public String getPreferredLanguage();
-
- /**
- * Sets the preferred language.
- * ISO 639-1 coding of the language preferred for the traveler / ticket holder
- *
- * @param language the new preferred language
- */
- public void setPreferredLanguage(String language);
-
-
-}