From: Roland Haeder Date: Wed, 12 Apr 2017 22:34:08 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dc1023fe16860b520014ad21b41b60a18f387053;p=jshop-core.git Continued: - add PaymentType enumeration (very simple for now) - updated jar(s) Signed-off-by: Roland Häder --- diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index 02189be..adb0b22 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index 2874054..17a8494 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 3490190..7a598ae 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jcustomer-core.jar b/lib/jcustomer-core.jar index b36fdb6..befd017 100644 Binary files a/lib/jcustomer-core.jar and b/lib/jcustomer-core.jar differ diff --git a/src/org/mxchange/jshopcore/model/payment/PaymentType.java b/src/org/mxchange/jshopcore/model/payment/PaymentType.java new file mode 100644 index 0000000..55c46bd --- /dev/null +++ b/src/org/mxchange/jshopcore/model/payment/PaymentType.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2017 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jshopcore.model.payment; + +/** + * Payment types + *

+ * @author Roland Haeder + */ +public enum PaymentType { + + /** + * Payment type "cash" + */ + PAYMENT_TYPE_CASH, + /** + * Payment type "credit card" + */ + PAYMENT_TYPE_CREDIT_CARD, + /** + * Payment type "prepayment" + */ + PAYMENT_TYPE_PREPAYMENT, + /** + * Payment type "invoice" + */ + PAYMENT_TYPE_INVOICE; + +}