Use database instead of Sone provider in post and post builder.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / AlbumDatabase.java
index 01d91b6..f07523b 100644 (file)
 
 package net.pterodactylus.sone.database;
 
+import net.pterodactylus.sone.data.Album;
+
 /**
  * Combines an {@link AlbumProvider} and an {@link AlbumStore} into an album
  * database.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public interface AlbumDatabase extends AlbumProvider, AlbumBuilderFactory, AlbumStore {
+public interface AlbumDatabase extends AlbumProvider, AlbumStore {
 
-       /* nothing here. */
+       void moveUp(Album album);
+       void moveDown(Album album);
 
 }