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