]> git.mxchange.org Git - jcontacts-core.git/blob - src/org/mxchange/jcontacts/events/contact/deleted/AdminDeletedContactEvent.java
Continued:
[jcontacts-core.git] / src / org / mxchange / jcontacts / events / contact / deleted / AdminDeletedContactEvent.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
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.jcontacts.events.contact.deleted;
18
19 import java.text.MessageFormat;
20 import org.mxchange.jcontacts.model.contact.Contact;
21
22 /**
23  * An event being fired when the administrator has deleted a contact
24  * <p>
25  * @author Roland Häder<roland@mxchange.org>
26  */
27 public class AdminDeletedContactEvent implements ObservableAdminDeletedContactEvent {
28
29         /**
30          * Serial number
31          */
32         private static final long serialVersionUID = 14_785_787_174_676_290L;
33
34         /**
35          * Deleted contact instance
36          */
37         private final Contact deletedContact;
38
39         /**
40          * Constructor with deleted contact instance
41          * <p>
42          * @param deletedContact Deleted contact instance
43          */
44         public AdminDeletedContactEvent (final Contact deletedContact) {
45                 // Is the contact instance valid?
46                 if (null == deletedContact) {
47                         // Throw NPE
48                         throw new NullPointerException("deletedContact is null"); //NOI18N
49                 } else if (deletedContact.getContactId() == null) {
50                         // Throw NPE again
51                         throw new NullPointerException("deletedContact.contactId is null"); //NOI18N
52                 } else if (deletedContact.getContactId() < 1) {
53                         // Invalid id number
54                         throw new IllegalArgumentException(MessageFormat.format("deletedContact.contactId={0} is invalid.", deletedContact.getContactId())); //NOI18N
55                 }
56
57                 // Set it here
58                 this.deletedContact = deletedContact;
59         }
60
61         @Override
62         public Contact getDeletedContact () {
63                 return this.deletedContact;
64         }
65
66 }