Add Freenet plugin and WoT subprojects
[fwot.git] / wot / src / main / java / net / pterodactylus / freenet / wot / event / IdentityEvent.java
1 /*
2  * Sone - IdentityEvent.java - Copyright © 2013 David Roden
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
18 package net.pterodactylus.freenet.wot.event;
19
20 import java.util.Objects;
21
22 import net.pterodactylus.freenet.wot.Identity;
23 import net.pterodactylus.freenet.wot.OwnIdentity;
24
25 /**
26  * Base class for {@link Identity} events.
27  *
28  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29  */
30 public abstract class IdentityEvent {
31
32         private final OwnIdentity ownIdentity;
33         private final Identity identity;
34
35         protected IdentityEvent(OwnIdentity ownIdentity, Identity identity) {
36                 this.ownIdentity = ownIdentity;
37                 this.identity = identity;
38         }
39
40         public OwnIdentity getOwnIdentity() {
41                 return ownIdentity;
42         }
43
44         public Identity getIdentity() {
45                 return identity;
46         }
47
48         @Override
49         public int hashCode() {
50                 return Objects.hash(getOwnIdentity(), getIdentity());
51         }
52
53         @Override
54         public boolean equals(Object object) {
55                 if ((object == null) || !object.getClass().equals(getClass())) {
56                         return false;
57                 }
58                 IdentityEvent identityEvent = (IdentityEvent) object;
59                 return Objects.equals(getOwnIdentity(), identityEvent.getOwnIdentity())
60                                 && Objects.equals(getIdentity(), identityEvent.getIdentity());
61         }
62
63 }