]> git.mxchange.org Git - juser-login-core.git/blob - src/org/mxchange/jusercore/events/user/add/AdminAddedUserEvent.java
Continued a bit:
[juser-login-core.git] / src / org / mxchange / jusercore / events / user / add / AdminAddedUserEvent.java
1 /*\r
2  * Copyright (C) 2016, 2017 Roland Häder\r
3  *\r
4  * This program is free software: you can redistribute it and/or modify\r
5  * it under the terms of the GNU General Public License as published by\r
6  * the Free Software Foundation, either version 3 of the License, or\r
7  * (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License\r
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
16  */\r
17 package org.mxchange.jusercore.events.user.add;\r
18 \r
19 import java.text.MessageFormat;\r
20 import org.mxchange.jusercore.model.user.User;\r
21 \r
22 /**\r
23  * An event being fired when the administrator has added a new user account\r
24  * <p>\r
25  * @author Roland Häder<roland@mxchange.org>\r
26  */\r
27 public class AdminAddedUserEvent implements ObservableAdminAddedUserEvent {\r
28 \r
29         /**\r
30          * Serial number\r
31          */\r
32         private static final long serialVersionUID = 14_785_787_174_676_290L;\r
33 \r
34         /**\r
35          * Added user instance\r
36          */\r
37         private final User addedUser;\r
38 \r
39         /**\r
40          * Constructor with added user instance\r
41          * <p>\r
42          * @param addedUser Added user instance\r
43          */\r
44         public AdminAddedUserEvent (final User addedUser) {\r
45                 // Is the user instance valid?\r
46                 if (null == addedUser) {\r
47                         // Throw NPE\r
48                         throw new NullPointerException("addedUser is null"); //NOI18N\r
49                 } else if (addedUser.getUserId() == null) {\r
50                         // Throw NPE again\r
51                         throw new NullPointerException("addedUser.userId is null"); //NOI18N\r
52                 } else if (addedUser.getUserId() < 1) {\r
53                         // Invalid id number\r
54                         throw new IllegalArgumentException(MessageFormat.format("addedUser.userId={0} is invalid.", addedUser.getUserId())); //NOI18N\r
55                 }\r
56 \r
57                 // Set it here\r
58                 this.addedUser = addedUser;\r
59         }\r
60 \r
61         @Override\r
62         public User getAddedUser () {\r
63                 return this.addedUser;\r
64         }\r
65 \r
66 }\r