3721f492ae73342ad3711a69317edab6507a89a1
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / IdentityListener.java
1 /*
2  * Sone - IdentityListener.java - Copyright © 2010 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.sone.freenet.wot;
19
20 import java.util.EventListener;
21
22 /**
23  * Listener interface for {@link IdentityManager} events.
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public interface IdentityListener extends EventListener {
28
29         /**
30          * Notifies a listener that an {@link OwnIdentity} that was not known on the
31          * previous check is available.
32          *
33          * @param ownIdentity
34          *            The new own identity
35          */
36         public void ownIdentityAdded(OwnIdentity ownIdentity);
37
38         /**
39          * Notifies a listener that an {@link OwnIdentity} that was available during
40          * the last check has gone away.
41          *
42          * @param ownIdentity
43          *            The disappeared own identity
44          */
45         public void ownIdentityRemoved(OwnIdentity ownIdentity);
46
47         /**
48          * Notifies a listener that a new identity was discovered.
49          *
50          * @param ownIdentity
51          *            The own identity at the root of the trust tree
52          * @param identity
53          *            The new identity
54          */
55         public void identityAdded(OwnIdentity ownIdentity, Identity identity);
56
57         /**
58          * Notifies a listener that some properties of the identity have changed.
59          *
60          * @param ownIdentity
61          *            The own identity at the root of the trust tree
62          * @param identity
63          *            The updated identity
64          */
65         public void identityUpdated(OwnIdentity ownIdentity, Identity identity);
66
67         /**
68          * Notifies a listener that an identity has gone away.
69          *
70          * @param ownIdentity
71          *            The own identity at the root of the trust tree
72          * @param identity
73          *            The disappeared identity
74          */
75         public void identityRemoved(OwnIdentity ownIdentity, Identity identity);
76
77 }