]> git.mxchange.org Git - jproduct-core.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Wed, 12 Apr 2017 22:34:08 +0000 (00:34 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 13 Apr 2017 19:23:00 +0000 (21:23 +0200)
- add PaymentType enumeration (very simple for now)
- updated jar(s)

Signed-off-by: Roland Häder <roland@mxchange.org>
lib/jcontacts-core.jar
lib/jcore.jar
lib/jcoreee.jar
lib/jcustomer-core.jar
src/org/mxchange/jshopcore/model/payment/PaymentType.java [new file with mode: 0644]

index 02189bef616809cd73a3f91d7dca5c3c316c2398..adb0b2296ab2c8355cc46b50d7c06bd8ae2e777e 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 287405451aa4e9c3bea0a7bf91d3b0ad92721d32..17a8494fcb7287892e15d2d5d7f25d59fa3bbe2c 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 3490190c8d028b124202db35d20e8372a92f26de..7a598aeba50e28dc92203892e26d7c3bcc153f16 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index b36fdb6c66364293754db2fafd97606a7d12b478..befd0172fc31d419671c906cb0abcf052345b242 100644 (file)
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 (file)
index 0000000..55c46bd
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jshopcore.model.payment;
+
+/**
+ * Payment types
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+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;
+
+}