summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/spec/IVoucher.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/IVoucher.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/IVoucher.java')
-rw-r--r--src/org/uic/ticket/api/spec/IVoucher.java146
1 files changed, 0 insertions, 146 deletions
diff --git a/src/org/uic/ticket/api/spec/IVoucher.java b/src/org/uic/ticket/api/spec/IVoucher.java
deleted file mode 100644
index c1b59bc..0000000
--- a/src/org/uic/ticket/api/spec/IVoucher.java
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- *
- */
-package org.uic.ticket.api.spec;
-
-import java.util.Date;
-
-/**
- * The Interface IVoucher.
- *
- * IVoucher provides the description of a voucher.
- *
- */
-public interface IVoucher extends IDocumentData {
-
- /**
- * Gets the reference.
- *
- * @return the reference
- */
- public String getReference() ;
-
- /**
- * Sets the reference.
- *
- * @param reference the new reference
- */
- public void setReference(String reference);
-
- /**
- * Gets the product owner.
- *
- * @return the product owner
- */
- public String getProductOwner();
-
- /**
- * Sets the product owner.
- *
- * @param productOwner the new product owner
- */
- public void setProductOwner(String productOwner);
-
-
- /**
- * Gets the product type.
- *
- * @return the product type
- */
- public String getProductId();
-
- /**
- * Sets the product type.
- *
- * @param id the new product id
- */
- public void setProductId(String type);
-
-
- /**
- * Gets the valid from date.
- *
- * @return the valid from date
- */
- public Date getValidFrom();
-
- /**
- * Sets the valid from date.
- *
- * @param validFrom the new valid from date
- */
- public void setValidFrom(Date validFrom);
-
- /**
- * Gets the valid until date.
- *
- * @return the valid until date
- */
- public Date getValidUntil();
-
- /**
- * Sets the valid until date.
- *
- * @param validUntil the new valid until date
- */
- public void setValidUntil(Date validUntil);
-
-
- /**
- * Gets the info text.
- *
- * @return the info text
- */
- public String getInfoText();
-
- /**
- * Sets the info text.
- *
- * @param infoText the new info text
- */
- public void setInfoText(String infoText) ;
-
-
- /**
- * Gets the amount in the currency and the fraction indicated in the issuer detail data.
- *
- * @return the amount in the currency and the fraction indicated in the issuer detail data
- */
- public Integer getAmount() ;
-
- /**
- * Sets the amount in the currency and the fraction indicated in the issuer detail data.
- *
- * @param amount the new amount in the currency and the fraction indicated in the issuer detail data
- */
- public void setAmount(Integer amount);
-
- /**
- * Gets the type of the voucher (code list defined by the product owner).
- *
- * @return the type of the voucher
- */
- public Integer getType() ;
-
- /**
- * Sets the type of the voucher (code list defined by the product owner).
- *
- * @param type the new type
- */
- public void setType(Integer type);
-
- /**
- * Gets the extension.
- *
- * @return the extension
- */
- public IExtension getExtension();
-
- /**
- * Sets the extension.
- *
- * @param extensionData the new extension
- */
- public void setExtension(IExtension extensionData);
-
-}