]> source.dussan.org Git - archiva.git/blob
e560efe8015822ed2fa06b39b01426080c3192a2
[archiva.git] /
1 package org.apache.archiva.redback.rest.api.model;
2
3 import org.apache.archiva.redback.integration.util.DateUtils;
4
5 import javax.xml.bind.annotation.XmlRootElement;
6 import java.io.Serializable;
7 import java.util.List;
8
9 /*
10  * Licensed to the Apache Software Foundation (ASF) under one
11  * or more contributor license agreements.  See the NOTICE file
12  * distributed with this work for additional information
13  * regarding copyright ownership.  The ASF licenses this file
14  * to you under the Apache License, Version 2.0 (the
15  * "License"); you may not use this file except in compliance
16  * with the License.  You may obtain a copy of the License at
17  *
18  * http://www.apache.org/licenses/LICENSE-2.0
19  *
20  * Unless required by applicable law or agreed to in writing,
21  * software distributed under the License is distributed on an
22  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
23  * KIND, either express or implied.  See the License for the
24  * specific language governing permissions and limitations
25  * under the License.
26  */
27
28 @XmlRootElement( name = "user" )
29 public class User
30     implements Serializable
31 {
32     private String username;
33
34     private String fullName;
35
36     private String email;
37
38     private boolean validated;
39
40     private boolean locked;
41
42     private String password;
43
44     private boolean passwordChangeRequired;
45
46     private boolean permanent;
47
48     private String confirmPassword;
49
50     // Display Only Fields.
51     private String timestampAccountCreation;
52
53     private String timestampLastLogin;
54
55     private String timestampLastPasswordChange;
56
57     /**
58      * for password change only
59      *
60      * @since 1.4
61      */
62     private String previousPassword;
63
64     /**
65      * for roles update only <b>not return on user read</b>
66      *
67      * @since 1.5
68      */
69     private List<String> assignedRoles;
70
71     public User()
72     {
73         // no op
74     }
75
76     public User( String username, String fullName, String email, boolean validated, boolean locked )
77     {
78         this.username = username;
79         this.fullName = fullName;
80         this.email = email;
81         this.validated = validated;
82         this.locked = locked;
83     }
84
85     public User( org.apache.archiva.redback.users.User user )
86     {
87         setUsername( user.getUsername() );
88         this.setEmail( user.getEmail() );
89         this.setFullName( user.getFullName() );
90         this.setLocked( user.isLocked() );
91         this.setPassword( user.getPassword() );
92         this.setValidated( user.isValidated() );
93         this.setPasswordChangeRequired( user.isPasswordChangeRequired() );
94         this.setPermanent( user.isPermanent() );
95
96         setTimestampAccountCreation( DateUtils.formatWithAge( user.getAccountCreationDate(), "ago" ) );
97         setTimestampLastLogin( DateUtils.formatWithAge( user.getLastLoginDate(), "ago" ) );
98         setTimestampLastPasswordChange( DateUtils.formatWithAge( user.getLastPasswordChange(), "ago" ) );
99     }
100
101
102     public String getUsername()
103     {
104         return username;
105     }
106
107     public void setUsername( String username )
108     {
109         this.username = username;
110     }
111
112     public String getFullName()
113     {
114         return fullName;
115     }
116
117     public void setFullName( String fullName )
118     {
119         this.fullName = fullName;
120     }
121
122     public String getEmail()
123     {
124         return email;
125     }
126
127     public void setEmail( String email )
128     {
129         this.email = email;
130     }
131
132     public boolean isValidated()
133     {
134         return validated;
135     }
136
137     public void setValidated( boolean validated )
138     {
139         this.validated = validated;
140     }
141
142     public boolean isLocked()
143     {
144         return locked;
145     }
146
147     public void setLocked( boolean isLocked )
148     {
149         this.locked = isLocked;
150     }
151
152     public String getPassword()
153     {
154         return password;
155     }
156
157     public void setPassword( String password )
158     {
159         this.password = password;
160     }
161
162     public boolean isPasswordChangeRequired()
163     {
164         return passwordChangeRequired;
165     }
166
167     public void setPasswordChangeRequired( boolean passwordChangeRequired )
168     {
169         this.passwordChangeRequired = passwordChangeRequired;
170     }
171
172     public boolean isPermanent()
173     {
174         return permanent;
175     }
176
177     public void setPermanent( boolean permanent )
178     {
179         this.permanent = permanent;
180     }
181
182     public String getConfirmPassword()
183     {
184         return confirmPassword;
185     }
186
187     public void setConfirmPassword( String confirmPassword )
188     {
189         this.confirmPassword = confirmPassword;
190     }
191
192     public String getTimestampAccountCreation()
193     {
194         return timestampAccountCreation;
195     }
196
197     public void setTimestampAccountCreation( String timestampAccountCreation )
198     {
199         this.timestampAccountCreation = timestampAccountCreation;
200     }
201
202     public String getTimestampLastLogin()
203     {
204         return timestampLastLogin;
205     }
206
207     public void setTimestampLastLogin( String timestampLastLogin )
208     {
209         this.timestampLastLogin = timestampLastLogin;
210     }
211
212     public String getTimestampLastPasswordChange()
213     {
214         return timestampLastPasswordChange;
215     }
216
217     public void setTimestampLastPasswordChange( String timestampLastPasswordChange )
218     {
219         this.timestampLastPasswordChange = timestampLastPasswordChange;
220     }
221
222     public String getPreviousPassword()
223     {
224         return previousPassword;
225     }
226
227     public void setPreviousPassword( String previousPassword )
228     {
229         this.previousPassword = previousPassword;
230     }
231
232     public List<String> getAssignedRoles()
233     {
234         return assignedRoles;
235     }
236
237     public void setAssignedRoles( List<String> assignedRoles )
238     {
239         this.assignedRoles = assignedRoles;
240     }
241
242     @Override
243     public String toString()
244     {
245         final StringBuilder sb = new StringBuilder();
246         sb.append( "User" );
247         sb.append( "{username='" ).append( username ).append( '\'' );
248         sb.append( ", fullName='" ).append( fullName ).append( '\'' );
249         sb.append( ", email='" ).append( email ).append( '\'' );
250         sb.append( ", validated=" ).append( validated );
251         sb.append( ", locked=" ).append( locked );
252         sb.append( ", password='" ).append( password ).append( '\'' );
253         sb.append( ", passwordChangeRequired=" ).append( passwordChangeRequired );
254         sb.append( ", permanent=" ).append( permanent );
255         sb.append( ", confirmPassword='" ).append( confirmPassword ).append( '\'' );
256         sb.append( ", timestampAccountCreation='" ).append( timestampAccountCreation ).append( '\'' );
257         sb.append( ", timestampLastLogin='" ).append( timestampLastLogin ).append( '\'' );
258         sb.append( ", timestampLastPasswordChange='" ).append( timestampLastPasswordChange ).append( '\'' );
259         sb.append( ", previousPassword='" ).append( previousPassword ).append( '\'' );
260         sb.append( ", assignedRoles=" ).append( assignedRoles );
261         sb.append( '}' );
262         return sb.toString();
263     }
264
265     @Override
266     public boolean equals( Object o )
267     {
268         if ( this == o )
269         {
270             return true;
271         }
272         if ( !( o instanceof User ) )
273         {
274             return false;
275         }
276
277         User user = (User) o;
278
279         if ( !username.equals( user.username ) )
280         {
281             return false;
282         }
283
284         return true;
285     }
286
287     @Override
288     public int hashCode()
289     {
290         return username.hashCode();
291     }
292 }