Move methods to move an image up and down to Image.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Image.java
index 3fbcc02..571eb4f 100644 (file)
@@ -106,6 +106,10 @@ public interface Image extends Identified, Fingerprintable {
 
        Modifier modify() throws IllegalStateException;
 
+       void moveUp() throws IllegalStateException;
+
+       void moveDown() throws IllegalStateException;
+
        void remove() throws IllegalStateException;
 
        interface Modifier {