From 76ecfe2dd42865ee38bb1876cb4ecfdfd4e991df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 10 Sep 2017 16:41:23 +0200 Subject: [PATCH] Continued: - fixed imports - CSS ids are now dash-separated MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../jcustomercore/model/customer/ContactCustomer.java | 4 ++-- src/org/mxchange/jcustomercore/model/customer/Customer.java | 2 +- .../model/customer/status/CustomerAccountStatus.java | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java b/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java index 1f09bd7..4b02c44 100644 --- a/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java +++ b/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java @@ -36,8 +36,8 @@ import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.persistence.Transient; -import org.mxchange.jcontacts.contact.Contact; -import org.mxchange.jcontacts.contact.UserContact; +import org.mxchange.jcontacts.model.contact.Contact; +import org.mxchange.jcontacts.model.contact.UserContact; import org.mxchange.jcustomercore.model.customer.Customer; import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus; diff --git a/src/org/mxchange/jcustomercore/model/customer/Customer.java b/src/org/mxchange/jcustomercore/model/customer/Customer.java index 8b77ca0..ec80cca 100644 --- a/src/org/mxchange/jcustomercore/model/customer/Customer.java +++ b/src/org/mxchange/jcustomercore/model/customer/Customer.java @@ -18,7 +18,7 @@ package org.mxchange.jcustomercore.model.customer; import java.io.Serializable; import java.util.Calendar; -import org.mxchange.jcontacts.contact.Contact; +import org.mxchange.jcontacts.model.contact.Contact; import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus; /** diff --git a/src/org/mxchange/jcustomercore/model/customer/status/CustomerAccountStatus.java b/src/org/mxchange/jcustomercore/model/customer/status/CustomerAccountStatus.java index 32d1fa5..1f985fd 100644 --- a/src/org/mxchange/jcustomercore/model/customer/status/CustomerAccountStatus.java +++ b/src/org/mxchange/jcustomercore/model/customer/status/CustomerAccountStatus.java @@ -28,17 +28,17 @@ public enum CustomerAccountStatus implements Serializable { /** * Unconfirmed (default) */ - UNCONFIRMED("CUSTOMER_ACCOUNT_STATUS_UNCONFIRMED", "customer_status_unconfirmed"), //NOI18N + UNCONFIRMED("CUSTOMER_ACCOUNT_STATUS_UNCONFIRMED", "customer-status-unconfirmed"), //NOI18N /** * Confirmed (email address validated) */ - CONFIRMED("CUSTOMER_ACCOUNT_STATUS_CONFIRMED", "customer_status_confirmed"), //NOI18N + CONFIRMED("CUSTOMER_ACCOUNT_STATUS_CONFIRMED", "customer-status-confirmed"), //NOI18N /** * Locked (maybe violated T&C) */ - LOCKED("CUSTOMER_ACCOUNT_STATUS_LOCKED", "customer_status_locked"); //NOI18N + LOCKED("CUSTOMER_ACCOUNT_STATUS_LOCKED", "customer-status-locked"); //NOI18N /** * Message key -- 2.39.5