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) --- src/org/uic/ticket/api/spec/IVoucher.java | 146 ------------------------------ 1 file changed, 146 deletions(-) delete mode 100644 src/org/uic/ticket/api/spec/IVoucher.java (limited to 'src/org/uic/ticket/api/spec/IVoucher.java') 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); - -} -- cgit v1.2.3