]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/user/PizzaUserWebSessionController.java
Continued with rewrites:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / user / PizzaUserWebSessionController.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
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.pizzaapplication.beans.user;
18
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jcontacts.contact.Contact;
22 import org.mxchange.jcontacts.events.contact.add.AdminAddedContactEvent;
23 import org.mxchange.jusercore.events.confirmation.UserConfirmedAccountEvent;
24 import org.mxchange.jusercore.events.login.UserLoggedInEvent;
25 import org.mxchange.jusercore.events.registration.UserRegisteredEvent;
26 import org.mxchange.jusercore.events.user.add.AdminAddedUserEvent;
27 import org.mxchange.jusercore.events.user.update.AdminUpdatedUserDataEvent;
28 import org.mxchange.jusercore.events.user.update.UpdatedUserPersonalDataEvent;
29 import org.mxchange.jusercore.exceptions.UserEmailAddressNotFoundException;
30 import org.mxchange.jusercore.exceptions.UserNotFoundException;
31 import org.mxchange.jusercore.model.user.User;
32 import org.mxchange.jusercore.model.user.profilemodes.ProfileMode;
33
34 /**
35  * An interface for user beans
36  * <p>
37  * @author Roland Haeder<roland@mxchange.org>
38  */
39 public interface PizzaUserWebSessionController extends Serializable {
40
41         /**
42          * Minimum password length
43          */
44         public static final Integer MINIMUM_PASSWORD_LENGTH = 5;
45
46         /**
47          * Observes events being fired when an administrator has added a new
48          * contact.
49          * <p>
50          * @param event Event being fired
51          */
52         void afterAdminAddedContact (final AdminAddedContactEvent event);
53
54         /**
55          * Event observer for newly added users by adminstrator
56          * <p>
57          * @param event Event being fired
58          */
59         void afterAdminAddedUserEvent (final AdminAddedUserEvent event);
60
61         /**
62          * Event observer for updated user data by administrator
63          * <p>
64          * @param event Event being updated
65          */
66         void afterAdminUpdatedUserDataEvent (final AdminUpdatedUserDataEvent event);
67
68         /**
69          * Event observer when user confirmed account.
70          * <p>
71          * @param event Event being fired
72          */
73         void afterUserConfirmedAccount (final UserConfirmedAccountEvent event);
74
75         /**
76          * Listens to fired event when user updated personal data
77          * <p>
78          * @param event Event being fired
79          */
80         void afterUserUpdatedPersonalData (final UpdatedUserPersonalDataEvent event);
81
82         /**
83          * Event observer for new user registrations
84          * <p>
85          * @param event User registration event
86          */
87         void afterRegistrationEvent (final UserRegisteredEvent event);
88
89         /**
90          * Event observer for logged-in user
91          * <p>
92          * @param event Event instance
93          */
94         void afterUserLogin (final UserLoggedInEvent event);
95
96         /**
97          * All users
98          * <p>
99          * @return A list of all public user profiles
100          */
101         List<User> allUsers ();
102
103         /**
104          * All public user profiles
105          * <p>
106          * @return A list of all public user profiles
107          */
108         List<User> allVisibleUsers ();
109
110         /**
111          * Checks whether users are registered
112          * <p>
113          * @return Whether users are registered
114          */
115         boolean hasUsers ();
116
117         /**
118          * Checks whether the given contact is a user
119          * <p>
120          * @param contact Contact to check
121          * <p>
122          * @return Whether the contact is a user
123          */
124         boolean isContactFound (final Contact contact);
125
126         /**
127          * Checks whether a public user account is registered. This means that at
128          * least one user profile has its flag "public user profile" enabled.
129          * <p>
130          * @return Whether at least one user has a public profile
131          */
132         boolean isVisibleUserFound ();
133
134         /**
135          * Checks whether given user instance's name is used
136          * <p>
137          * @param user User instance's name to check
138          * <p>
139          * @return Whether it is already used
140          */
141         boolean isUserNameRegistered (final User user);
142
143         /**
144          * Tries to lookup user by given id number. If the user is not found or the
145          * account status is not CONFIRMED proper exceptions are thrown.
146          * <p>
147          * @param userId User id
148          * <p>
149          * @return User instance
150          * <p>
151          * @throws UserNotFoundException If the user is not found
152          */
153         User lookupUserById (final Long userId) throws UserNotFoundException;
154
155         /**
156          * Tries to lookup user by given email address. If the user is not found a
157          * proper exceptions is thrown.
158          * <p>
159          * @param emailAddress Email address
160          * <p>
161          * @return User instance
162          * <p>
163          * @throws UserEmailAddressNotFoundException If the user's email address is not found
164          */
165         User lookupUserByEmailAddress (final String emailAddress) throws UserEmailAddressNotFoundException;
166
167         /**
168          * Creates an instance from all properties
169          * <p>
170          * @return A user instance
171          */
172         User createUserInstance ();
173
174         /**
175          * Creates a user instance for login phase
176          * <p>
177          * @return User instance
178          */
179         User createUserLogin ();
180
181         /**
182          * Getter for user id
183          * <p>
184          * @return User id
185          */
186         Long getUserId ();
187
188         /**
189          * Setter for user id
190          * <p>
191          * @param userId User id
192          */
193         void setUserId (final Long userId);
194
195         /**
196          * Getter for user name
197          * <p>
198          * @return User name
199          */
200         String getUserName ();
201
202         /**
203          * Setter for user name
204          * <p>
205          * @param userName User name
206          */
207         void setUserName (final String userName);
208
209         /**
210          * Getter for unencrypted user password
211          * <p>
212          * @return Unencrypted user password
213          */
214         String getUserPassword ();
215
216         /**
217          * Setter for unencrypted user password
218          * <p>
219          * @param userPassword Unencrypted user password
220          */
221         void setUserPassword (final String userPassword);
222
223         /**
224          * Getter for unencrypted user password repeated
225          * <p>
226          * @return Unencrypted user password repeated
227          */
228         String getUserPasswordRepeat ();
229
230         /**
231          * Setter for unencrypted user password repeated
232          * <p>
233          * @param userPasswordRepeat Unencrypted user password repeated
234          */
235         void setUserPasswordRepeat (final String userPasswordRepeat);
236
237         /**
238          * Getter for user profile mode
239          * <p>
240          * @return User profile mode
241          */
242         ProfileMode getUserProfileMode ();
243
244         /**
245          * Setter for user profile mode
246          * <p>
247          * @param userProfileMode User profile mode
248          */
249         void setUserProfileMode (final ProfileMode userProfileMode);
250
251         /**
252          * Checks whether all required personal data is set
253          * <p>
254          * @return Whether the required personal data is set
255          */
256         boolean isRequiredPersonalDataSet ();
257
258         /**
259          * Checks whether all required personal data is set for changing them
260          * <p>
261          * @return Whether the required personal data is set
262          */
263         boolean isRequiredChangePersonalDataSet ();
264
265         /**
266          * Checks whether same passwords has been entered
267          * <p>
268          * @return Whether same passwords has been entered
269          */
270         boolean isSamePasswordEntered ();
271
272         /**
273          * Checks if the user id is empty
274          * <p>
275          * @return Whether the user id is empty
276          */
277         boolean isUserIdEmpty ();
278
279         /**
280          * Changes logged-in user's personal data if the current password matches
281          * and TAC + privacy statement has been accepted.
282          * <p>
283          * @return New target page
284          */
285         String doChangePersonalData ();
286
287         /**
288          * Checks whether this application requires a user name to be entered.
289          * Otherwise a random name like "userXXXXX" is generated
290          * <p>
291          * @return Whether this application requires a user name
292          */
293         boolean isUserNameRequired ();
294
295         /**
296          * Checks wether public user profiles are enabled. This requires that user
297          * names are also enabled.
298          * <p>
299          * @return Whether public user profiles are enabled
300          */
301         boolean isPublicUserProfileEnabled ();
302
303 }