2 * Copyright (C) 2016 - 2018 Free Software Foundation
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.jcustomercore.model.customer;
19 import java.util.Date;
20 import java.util.Objects;
21 import javax.persistence.Basic;
22 import javax.persistence.CascadeType;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.EnumType;
26 import javax.persistence.Enumerated;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.JoinColumn;
31 import javax.persistence.Lob;
32 import javax.persistence.NamedQueries;
33 import javax.persistence.NamedQuery;
34 import javax.persistence.OneToOne;
35 import javax.persistence.Table;
36 import javax.persistence.Temporal;
37 import javax.persistence.TemporalType;
38 import javax.persistence.Transient;
39 import org.apache.commons.lang3.StringUtils;
40 import org.mxchange.jcontacts.model.contact.Contact;
41 import org.mxchange.jcontacts.model.contact.UserContact;
42 import org.mxchange.jcoreutils.Comparables;
43 import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus;
48 * @author Roland Häder<roland@mxchange.org>
50 @Entity (name = "customer")
56 @NamedQuery (name = "AllCustomers", query = "SELECT c FROM customer AS c ORDER BY c.customerId ASC")
59 @SuppressWarnings ("PersistenceUnitPresent")
60 public class ContactCustomer implements Customer {
66 private static final long serialVersionUID = 14_857_923_178_504_617L;
69 * Account status for this customer
71 @Basic (optional = false)
72 @Enumerated (EnumType.STRING)
73 @Column (name = "customer_status", nullable = false)
74 private CustomerAccountStatus customerAccountStatus;
77 * Contact instance (personal data)
79 @JoinColumn (name = "customer_contact_id", nullable = false, updatable = false, unique = true)
80 @OneToOne (targetEntity = UserContact.class, cascade = CascadeType.ALL, optional = false)
81 private Contact customerContact;
84 * When this customer has been created
86 @Basic (optional = false)
87 @Column (name = "customer_created", nullable = false, updatable = false)
88 @Temporal (TemporalType.TIMESTAMP)
89 private Date customerCreated;
92 * Id number for this entry
95 @GeneratedValue (strategy = GenerationType.IDENTITY)
96 @Column (name = "customer_id", nullable = false, updatable = false)
97 private Long customerId;
100 * When this customer has been locked (last timestamp)
102 @Column (name = "customer_last_locked")
103 @Temporal (TemporalType.TIMESTAMP)
104 private Date customerLastLocked;
110 @Column (name = "customer_last_locked_reason")
111 private String customerLastLockedReason;
116 @Basic (optional = false)
117 @Column (name = "customer_number", nullable = false, updatable = false, unique = true)
118 private String customerNumber;
121 * When this customer has been updated
123 @Column (name = "customer_updated")
124 @Temporal (TemporalType.TIMESTAMP)
125 private Date customerUpdated;
128 * Default constructor
130 public ContactCustomer () {
134 * Constructor with account status, contact instance and customer number
136 * @param customerAccountStatus Account status (Call-agents may only call
138 * @param customerContact Contact instance
139 * @param customerNumber Customer number
141 public ContactCustomer (final CustomerAccountStatus customerAccountStatus, final Contact customerContact, final String customerNumber) {
142 // Call other constructor
146 this.customerAccountStatus = customerAccountStatus;
147 this.customerContact = customerContact;
148 this.customerNumber = customerNumber;
152 public int compareTo (final Customer customer) {
153 // For performance reasons
154 if (null == customer) {
156 throw new NullPointerException("customer is null"); //NOI18N
157 } else if (customer.equals(this)) {
163 final int comparators[] = {
164 // First check contact instance
165 this.getCustomerContact().compareTo(customer.getCustomerContact()),
166 // ... then customer number
167 this.getCustomerNumber().compareTo(customer.getCustomerNumber()),
168 // ... last is confirmation key
169 StringUtils.compare(this.getCustomerConfirmKey(), customer.getCustomerConfirmKey())
173 final int comparison = Comparables.checkAll(comparators);
180 public boolean equals (final Object object) {
181 if (this == object) {
183 } else if (null == object) {
185 } else if (this.getClass() != object.getClass()) {
189 final Customer other = (Customer) object;
191 if (!Objects.equals(this.getCustomerNumber(), other.getCustomerNumber())) {
193 } else if (!Objects.equals(this.getCustomerContact(), other.getCustomerContact())) {
195 } else if (!Objects.equals(this.getCustomerId(), other.getCustomerId())) {
203 public CustomerAccountStatus getCustomerAccountStatus () {
204 return this.customerAccountStatus;
208 public void setCustomerAccountStatus (final CustomerAccountStatus customerStatus) {
209 this.customerAccountStatus = customerStatus;
213 public String getCustomerConfirmKey () {
214 throw new UnsupportedOperationException("Not supported yet."); //NOI18N
218 public void setCustomerConfirmKey (final String customerConfirmKey) {
219 throw new UnsupportedOperationException("Not supported yet."); //NOI18N
223 public Contact getCustomerContact () {
224 return this.customerContact;
228 public void setCustomerContact (final Contact customerContact) {
229 this.customerContact = customerContact;
233 @SuppressWarnings ("ReturnOfDateField")
234 public Date getCustomerCreated () {
235 return this.customerCreated;
239 @SuppressWarnings ("AssignmentToDateFieldFromParameter")
240 public void setCustomerCreated (final Date customerCreated) {
241 this.customerCreated = customerCreated;
245 public Long getCustomerId () {
246 return this.customerId;
250 public void setCustomerId (final Long customerId) {
251 this.customerId = customerId;
255 @SuppressWarnings ("ReturnOfDateField")
256 public Date getCustomerLastLocked () {
257 return this.customerLastLocked;
261 @SuppressWarnings ("AssignmentToDateFieldFromParameter")
262 public void setCustomerLastLocked (final Date customerLastLocked) {
263 this.customerLastLocked = customerLastLocked;
267 public String getCustomerLastLockedReason () {
268 return this.customerLastLockedReason;
272 public void setCustomerLastLockedReason (final String customerLastLockedReason) {
273 this.customerLastLockedReason = customerLastLockedReason;
277 public String getCustomerNumber () {
278 return this.customerNumber;
282 public void setCustomerNumber (final String customerNumber) {
283 this.customerNumber = customerNumber;
287 public String getCustomerPasswordHash () {
288 throw new UnsupportedOperationException("Unfinished"); //NOI18N
292 public void setCustomerPasswordHash (final String customerPasswordHash) {
293 throw new UnsupportedOperationException("Unfinished"); //NOI18N
297 @SuppressWarnings ("ReturnOfDateField")
298 public Date getCustomerUpdated () {
299 return this.customerUpdated;
303 @SuppressWarnings ("AssignmentToDateFieldFromParameter")
304 public void setCustomerUpdated (final Date customerUpdated) {
305 this.customerUpdated = customerUpdated;
309 public int hashCode () {
312 hash = 53 * hash + Objects.hashCode(this.getCustomerContact());
313 hash = 53 * hash + Objects.hashCode(this.getCustomerId());
314 hash = 53 * hash + Objects.hashCode(this.getCustomerNumber());