2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.mailreaderjpa;
18
19 import java.io.Serializable;
20 import java.sql.Timestamp;
21 import java.util.List;
22 import javax.persistence.CascadeType;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.GenerationType;
27 import javax.persistence.Id;
28 import javax.persistence.NamedQueries;
29 import javax.persistence.NamedQuery;
30 import javax.persistence.OneToMany;
31 import javax.persistence.Version;
32
33 /***
34 * <p>JPA entity class for the <code>MAILREADER_USERS</code> table.</p>
35 */
36 @Entity(name="mailreader_users")
37 @NamedQueries({
38 @NamedQuery(name="User.findAll", query="SELECT u FROM mailreader_users u"),
39 @NamedQuery(name="User.findByUsername", query="SELECT u FROM mailreader_users u WHERE u.username = :username")
40 })
41 public class User implements Serializable {
42
43 @Id
44 @Column(name="user_id")
45 @GeneratedValue(strategy = GenerationType.AUTO)
46 private Integer id;
47
48 /*** Creates a new instance of User */
49 public User() {
50 }
51
52 public Integer getId() {
53 return id;
54 }
55
56 public void setId(Integer id) {
57 this.id = id;
58 }
59
60 public String toString() {
61 return "org.apache.mailreaderjpa.User[id=" + id
62 + ",fromAddress='" + getFromAddress()
63 + "',fullName='" + getFullName()
64 + "',password='" + getPassword()
65 + "',replyToAddress='" + getReplyToAddress()
66 + "',username='" + getUsername()
67 + "',lastUpdate='" + getLastUpdate()
68 + "']";
69 }
70
71 public int hashCode() {
72 if (getId() != null) {
73 return getId().intValue();
74 } else {
75 return super.hashCode();
76 }
77 }
78
79 public boolean equals(Object obj) {
80 if ((obj instanceof User)
81 && (getId() != null)) {
82 return getId().equals(((User) obj).getId());
83 } else {
84 return false;
85 }
86 }
87
88 @Column(name="from_address")
89 private String fromAddress;
90 @Column(name="full_name")
91 private String fullName;
92 @Column(nullable=false)
93 private String password;
94 @Column(name="reply_to_address")
95 private String replyToAddress;
96 @OneToMany(mappedBy="user",cascade=CascadeType.ALL)
97 private List<Subscription> subscriptions;
98 @Column(nullable=false, unique=true)
99 private String username;
100 @Column(name="last_update")
101 @Version()
102 private Timestamp lastUpdate;
103
104 public String getFromAddress() {
105 return fromAddress;
106 }
107
108 public void setFromAddress(String fromAddress) {
109 this.fromAddress = fromAddress;
110 }
111
112 public String getFullName() {
113 return fullName;
114 }
115
116 public void setFullName(String fullName) {
117 this.fullName = fullName;
118 }
119
120 public String getPassword() {
121 return password;
122 }
123
124 public void setPassword(String password) {
125 this.password = password;
126 }
127
128 public String getReplyToAddress() {
129 return replyToAddress;
130 }
131
132 public void setReplyToAddress(String replyToAddress) {
133 this.replyToAddress = replyToAddress;
134 }
135
136 public List<Subscription> getSubscriptions() {
137 return subscriptions;
138 }
139
140 public void setSubscriptions(List<Subscription> subscriptions) {
141 this.subscriptions = subscriptions;
142 }
143
144 public String getUsername() {
145 return username;
146 }
147
148 public void setUsername(String username) {
149 this.username = username;
150 }
151
152 public Timestamp getLastUpdate() {
153 return lastUpdate;
154 }
155
156 public void setLastUpdate(Timestamp lastUpdate) {
157 this.lastUpdate = lastUpdate;
158 }
159
160 public void addSubscription(Subscription subscription) {
161 List<Subscription> subscriptions = getSubscriptions();
162 if (!subscriptions.contains(subscription)) {
163 subscription.setUser(this);
164 subscriptions.add(subscription);
165 }
166 }
167
168 public void removeSubscription(Subscription subscription) {
169 List<Subscription> subscriptions = getSubscriptions();
170 if (subscriptions.contains(subscription)) {
171 subscriptions.remove(subscription);
172
173
174
175
176 }
177 }
178
179
180 }