]> git.mxchange.org Git - juser-core.git/blob - src/org/mxchange/jusercore/model/user/LoginUser.java
Continued:
[juser-core.git] / src / org / mxchange / jusercore / model / user / LoginUser.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (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 General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jusercore.model.user;
18
19 import java.util.Calendar;
20 import javax.persistence.Basic;
21 import javax.persistence.CascadeType;
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.EnumType;
25 import javax.persistence.Enumerated;
26 import javax.persistence.GeneratedValue;
27 import javax.persistence.GenerationType;
28 import javax.persistence.Id;
29 import javax.persistence.JoinColumn;
30 import javax.persistence.NamedQueries;
31 import javax.persistence.NamedQuery;
32 import javax.persistence.OneToOne;
33 import javax.persistence.Table;
34 import javax.persistence.Temporal;
35 import javax.persistence.TemporalType;
36 import org.mxchange.jcontacts.contact.Contact;
37 import org.mxchange.jcontacts.contact.UserContact;
38 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
39
40 /**
41  * A shop customer class.
42  * <p>
43  * @author Roland Haeder<roland@mxchange.org>
44  */
45 @Entity (name = "users")
46 @Table (name = "users")
47 @NamedQueries(
48         {
49                 @NamedQuery(name = "AllUserNames", query = "SELECT DISTINCT u.userName FROM users AS u ORDER BY u.userId ASC"),
50                 @NamedQuery(name = "AllEmailAddresses", query = "SELECT DISTINCT c.emailAddress FROM contacts AS c ORDER BY c.contactId ASC"),
51                 @NamedQuery(name = "SearchUserName", query = "SELECT u FROM users AS u WHERE LOWER(u.userName) LIKE LOWER(:param)"),
52                 @NamedQuery(name = "SearchEmailAddress", query = "SELECT u FROM users AS u INNER JOIN contacts AS c ON u.userContact = c WHERE LOWER(c.emailAddress) LIKE LOWER(:param)")
53         }
54 )
55 public class LoginUser implements User {
56
57         /**
58          * Serial number
59          */
60         private static final long serialVersionUID = 4_328_454_581_751L;
61
62         /**
63          * Id number from "contacts" table
64          */
65         @JoinColumn (name = "contact_id", nullable = false, updatable = false)
66         @OneToOne (cascade = CascadeType.ALL, targetEntity = UserContact.class, optional = false)
67         private Contact userContact;
68
69         /**
70          * Account status
71          */
72         @Basic (optional = false)
73         @Column (name = "user_account_status", nullable = false)
74         @Enumerated (value = EnumType.STRING)
75         private UserAccountStatus userAccountStatus;
76
77         /**
78          * Confirmation key
79          */
80         @Column (name = "user_confirm_key", length = 50)
81         private String userConfirmKey;
82
83         /**
84          * "created" timestamp
85          */
86         @Basic (optional = false)
87         @Temporal (TemporalType.TIMESTAMP)
88         @Column (name = "user_created", nullable = false)
89         private Calendar userCreated;
90
91         /**
92          * User id
93          */
94         @Id
95         @Column (name = "user_id", nullable = false, length = 20, updatable = false)
96         @GeneratedValue (strategy = GenerationType.IDENTITY)
97         private Long userId;
98
99         /**
100          * "locked" timestamp
101          */
102         @Temporal (TemporalType.TIMESTAMP)
103         @Column (name = "user_locked")
104         private Calendar userLocked;
105
106         /**
107          * User name
108          */
109         @Column (name = "user_name", nullable = false, length = 20)
110         private String userName;
111
112         /**
113          * Encrypted password
114          */
115         @Column (name = "user_encrypted_password", nullable = false)
116         private String userEncryptedPassword;
117
118         /**
119          * Default constructor
120          */
121         public LoginUser () {
122         }
123
124         @Override
125         public void copyAll (final User user) {
126                 // Copy also contact data
127                 this.getUserContact().copyAll(user.getUserContact());
128
129                 // Copy other data
130                 this.setUserConfirmKey(user.getUserConfirmKey());
131                 this.setUserName(user.getUserName());
132                 this.setUserEncryptedPassword(user.getUserEncryptedPassword());
133                 this.setUserAccountStatus(user.getUserAccountStatus());
134                 this.setUserCreated(user.getUserCreated());
135                 this.setUserLocked(user.getUserLocked());
136         }
137
138         @Override
139         public Contact getUserContact () {
140                 return this.userContact;
141         }
142
143         @Override
144         public void setUserContact (final Contact userContact) {
145                 this.userContact = userContact;
146         }
147
148         @Override
149         public UserAccountStatus getUserAccountStatus () {
150                 return this.userAccountStatus;
151         }
152
153         @Override
154         public void setUserAccountStatus (final UserAccountStatus userAccountStatus) {
155                 this.userAccountStatus = userAccountStatus;
156         }
157
158         @Override
159         public String getUserConfirmKey () {
160                 return this.userConfirmKey;
161         }
162
163         @Override
164         public void setUserConfirmKey (final String customerConfirmKey) {
165                 this.userConfirmKey = customerConfirmKey;
166         }
167
168         @Override
169         public Calendar getUserCreated () {
170                 return this.userCreated;
171         }
172
173         @Override
174         public void setUserCreated (final Calendar userCreated) {
175                 this.userCreated = userCreated;
176         }
177
178         @Override
179         public Long getUserId () {
180                 return this.userId;
181         }
182
183         @Override
184         public void setUserId (final Long userId) {
185                 this.userId = userId;
186         }
187
188         @Override
189         public Calendar getUserLocked () {
190                 return this.userLocked;
191         }
192
193         @Override
194         public void setUserLocked (final Calendar userLocked) {
195                 this.userLocked = userLocked;
196         }
197
198         @Override
199         public String getUserName () {
200                 return this.userName;
201         }
202
203         @Override
204         public void setUserName (final String userName) {
205                 this.userName = userName;
206         }
207
208         @Override
209         public String getUserEncryptedPassword () {
210                 return this.userEncryptedPassword;
211         }
212
213         @Override
214         public void setUserEncryptedPassword (final String userEncryptedPassword) {
215                 this.userEncryptedPassword = userEncryptedPassword;
216         }
217 }