99d757b466f37b8021c6c128dcd93d3dad13d9b3
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / IdentityManager.java
1 package net.pterodactylus.sone.freenet.wot;
2
3 import java.util.Set;
4
5 import net.pterodactylus.util.service.Service;
6
7 import com.google.common.eventbus.EventBus;
8
9 /**
10  * Connects to a {@link WebOfTrustConnector} and sends identity events to an
11  * {@link EventBus}.
12  *
13  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
14  */
15 public interface IdentityManager extends Service {
16
17         boolean isConnected();
18         Set<OwnIdentity> getAllOwnIdentities();
19
20 }