Change dates in file headers
[Sone.git] / src / main / java / net / pterodactylus / sone / database / FriendProvider.java
1 package net.pterodactylus.sone.database;
2
3 import java.util.Collection;
4
5 import net.pterodactylus.sone.data.Sone;
6
7 /**
8  * Provides information about {@link Sone#getFriends() friends} of a {@link Sone}.
9  *
10  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
11  */
12 public interface FriendProvider {
13
14         Collection<String> getFriends(Sone localSone);
15         boolean isFriend(Sone localSone, String friendSoneId);
16
17 }