Add identity manager.
[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 identity
51          *            The new identity
52          */
53         public void identityAdded(Identity identity);
54
55         /**
56          * Notifies a listener that some properties of the identity have changed.
57          *
58          * @param identity
59          *            The updated identity
60          */
61         public void identityUpdated(Identity identity);
62
63         /**
64          * Notifies a listener that an identity has gone away.
65          *
66          * @param identity
67          *            The disappeared identity
68          */
69         public void identityRemoved(Identity identity);
70
71 }