1 package net.pterodactylus.sone.database;
3 import java.util.Collection;
5 import net.pterodactylus.sone.data.Sone;
8 * Provides information about {@link Sone#getFriends() friends} of a {@link Sone}.
10 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
12 public interface FriendProvider {
14 Collection<String> getFriends(Sone localSone);
15 boolean isFriend(Sone localSone, String friendSoneId);