]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java
Continued:
[jcustomer-core.git] / src / org / mxchange / jcustomercore / model / customer / ContactCustomer.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
3  *
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.
8  *
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.
13  *
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/>.
16  */
17 package org.mxchange.jcustomercore.model.customer;
18
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.mxchange.jcontacts.model.contact.Contact;
40 import org.mxchange.jcontacts.model.contact.UserContact;
41 import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus;
42
43 /**
44  * A customer entity
45  * <p>
46  * @author Roland Häder<roland@mxchange.org>
47  */
48 @Entity (name = "customer")
49 @Table (
50                 name = "customer"
51 )
52 @NamedQueries (
53                 {
54                         @NamedQuery (name = "AllCustomers", query = "SELECT c FROM customer AS c ORDER BY c.customerId ASC"),
55                         @NamedQuery (name = "SearchCustomerByNumber", query = "SELECT c FROM customer AS c WHERE c.customerNumber = :customerNumber"),
56                         @NamedQuery (name = "SearchCustomerById", query = "SELECT c FROM customer AS c WHERE c.customerId = :customerId")
57                 }
58 )
59 @SuppressWarnings ("PersistenceUnitPresent")
60 public class ContactCustomer implements Customer {
61
62         /**
63          * Serial number
64          */
65         @Transient
66         private static final long serialVersionUID = 14_857_923_178_504_617L;
67
68         /**
69          * Account status for this customer
70          */
71         @Basic (optional = false)
72         @Enumerated (EnumType.STRING)
73         @Column (name = "customer_status", nullable = false)
74         private CustomerAccountStatus customerAccountStatus;
75
76         /**
77          * Contact instance (personal data)
78          */
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;
82
83         /**
84          * When this customer has been created
85          */
86         @Basic (optional = false)
87         @Column (name = "customer_created", nullable = false, updatable = false)
88         @Temporal (TemporalType.TIMESTAMP)
89         private Date customerCreated;
90
91         /**
92          * Id number for this entry
93          */
94         @Id
95         @GeneratedValue (strategy = GenerationType.IDENTITY)
96         @Column (name = "customer_id", nullable = false, updatable = false)
97         private Long customerId;
98
99         /**
100          * When this customer has been locked (last timestamp)
101          */
102         @Column (name = "customer_last_locked")
103         @Temporal (TemporalType.TIMESTAMP)
104         private Date customerLastLocked;
105
106         /**
107          * Last locked reason
108          */
109         @Lob
110         @Column (name = "customer_last_locked_reason")
111         private String customerLastLockedReason;
112
113         /**
114          * Customer number
115          */
116         @Basic (optional = false)
117         @Column (name = "customer_number", nullable = false, updatable = false, unique = true)
118         private String customerNumber;
119
120         /**
121          * When this customer has been updated
122          */
123         @Column (name = "customer_updated")
124         @Temporal (TemporalType.TIMESTAMP)
125         private Date customerUpdated;
126
127         /**
128          * Default constructor
129          */
130         public ContactCustomer () {
131         }
132
133         /**
134          * Constructor with account status, contact instance and customer number
135          * <p>
136          * @param customerAccountStatus Account status (Call-agents may only call
137          * unlocked accounts)
138          * @param customerContact Contact instance
139          * @param customerNumber Customer number
140          */
141         public ContactCustomer (final CustomerAccountStatus customerAccountStatus, final Contact customerContact, final String customerNumber) {
142                 // Call other constructor
143                 this();
144
145                 // Set all parameter
146                 this.customerAccountStatus = customerAccountStatus;
147                 this.customerContact = customerContact;
148                 this.customerNumber = customerNumber;
149         }
150
151         @Override
152         public void copyAll (final Customer customer) {
153                 // Copy all supported fields
154                 this.setCustomerAccountStatus(customer.getCustomerAccountStatus());
155                 this.setCustomerContact(customer.getCustomerContact());
156                 this.setCustomerCreated(customer.getCustomerCreated());
157                 this.setCustomerId(customer.getCustomerId());
158                 this.setCustomerLastLocked(customer.getCustomerLastLocked());
159                 this.setCustomerLastLockedReason(customer.getCustomerLastLockedReason());
160                 this.setCustomerNumber(customer.getCustomerNumber());
161         }
162
163         @Override
164         public boolean equals (final Object object) {
165                 if (this == object) {
166                         return true;
167                 } else if (null == object) {
168                         return false;
169                 } else if (this.getClass() != object.getClass()) {
170                         return false;
171                 }
172
173                 final Customer other = (Customer) object;
174
175                 if (!Objects.equals(this.getCustomerNumber(), other.getCustomerNumber())) {
176                         return false;
177                 } else if (!Objects.equals(this.getCustomerContact(), other.getCustomerContact())) {
178                         return false;
179                 } else if (!Objects.equals(this.getCustomerId(), other.getCustomerId())) {
180                         return false;
181                 }
182
183                 return true;
184         }
185
186         @Override
187         public int hashCode () {
188                 int hash = 7;
189
190                 hash = 53 * hash + Objects.hashCode(this.getCustomerContact());
191                 hash = 53 * hash + Objects.hashCode(this.getCustomerId());
192                 hash = 53 * hash + Objects.hashCode(this.getCustomerNumber());
193
194                 return hash;
195         }
196
197         @Override
198         public CustomerAccountStatus getCustomerAccountStatus () {
199                 return this.customerAccountStatus;
200         }
201
202         @Override
203         public void setCustomerAccountStatus (final CustomerAccountStatus customerStatus) {
204                 this.customerAccountStatus = customerStatus;
205         }
206
207         @Override
208         public String getCustomerConfirmKey () {
209                 throw new UnsupportedOperationException("Not supported yet."); //NOI18N
210         }
211
212         @Override
213         public void setCustomerConfirmKey (final String customerConfirmKey) {
214                 throw new UnsupportedOperationException("Not supported yet."); //NOI18N
215         }
216
217         @Override
218         public Contact getCustomerContact () {
219                 return this.customerContact;
220         }
221
222         @Override
223         public void setCustomerContact (final Contact customerContact) {
224                 this.customerContact = customerContact;
225         }
226
227         @Override
228         @SuppressWarnings ("ReturnOfDateField")
229         public Date getCustomerCreated () {
230                 return this.customerCreated;
231         }
232
233         @Override
234         @SuppressWarnings ("AssignmentToDateFieldFromParameter")
235         public void setCustomerCreated (final Date customerCreated) {
236                 this.customerCreated = customerCreated;
237         }
238
239         @Override
240         public Long getCustomerId () {
241                 return this.customerId;
242         }
243
244         @Override
245         public void setCustomerId (final Long customerId) {
246                 this.customerId = customerId;
247         }
248
249         @Override
250         @SuppressWarnings ("ReturnOfDateField")
251         public Date getCustomerLastLocked () {
252                 return this.customerLastLocked;
253         }
254
255         @Override
256         @SuppressWarnings ("AssignmentToDateFieldFromParameter")
257         public void setCustomerLastLocked (final Date customerLastLocked) {
258                 this.customerLastLocked = customerLastLocked;
259         }
260
261         @Override
262         public String getCustomerLastLockedReason () {
263                 return this.customerLastLockedReason;
264         }
265
266         @Override
267         public void setCustomerLastLockedReason (final String customerLastLockedReason) {
268                 this.customerLastLockedReason = customerLastLockedReason;
269         }
270
271         @Override
272         public String getCustomerNumber () {
273                 return this.customerNumber;
274         }
275
276         @Override
277         public void setCustomerNumber (final String customerNumber) {
278                 this.customerNumber = customerNumber;
279         }
280
281         @Override
282         public String getCustomerPasswordHash () {
283                 throw new UnsupportedOperationException("Unfinished"); //NOI18N
284         }
285
286         @Override
287         public void setCustomerPasswordHash (final String customerPasswordHash) {
288                 throw new UnsupportedOperationException("Unfinished"); //NOI18N
289         }
290
291         @Override
292         @SuppressWarnings ("ReturnOfDateField")
293         public Date getCustomerUpdated () {
294                 return this.customerUpdated;
295         }
296
297         @Override
298         @SuppressWarnings ("AssignmentToDateFieldFromParameter")
299         public void setCustomerUpdated (final Date customerUpdated) {
300                 this.customerUpdated = customerUpdated;
301         }
302
303 }