Move friend-related functionality into the database.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / FriendDatabase.java
diff --git a/src/main/java/net/pterodactylus/sone/database/FriendDatabase.java b/src/main/java/net/pterodactylus/sone/database/FriendDatabase.java
new file mode 100644 (file)
index 0000000..761d356
--- /dev/null
@@ -0,0 +1,10 @@
+package net.pterodactylus.sone.database;
+
+/**
+ * Combines a {@link FriendProvider} and a {@link FriendStore} into a friend database.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public interface FriendDatabase extends FriendProvider, FriendStore {
+
+}