2 * Sone - Image.java - Copyright © 2011–2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.data;
21 * Container for image metadata.
23 * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
25 public interface Image extends Identified, Fingerprintable {
28 * Returns the ID of this image.
30 * @return The ID of this image
35 * Returns the Sone this image belongs to.
37 * @return The Sone this image belongs to
42 * Returns the album this image belongs to.
44 * @return The album this image belongs to
49 * Returns the request key of this image.
51 * @return The request key of this image
56 * Returns whether the image has already been inserted. An image is
57 * considered as having been inserted it its {@link #getKey() key} is not
60 * @return {@code true} if there is a key for this image, {@code false}
66 * Returns the creation time of this image.
68 * @return The creation time of this image (in milliseconds since 1970, Jan
71 long getCreationTime();
74 * Returns the width of this image.
76 * @return The width of this image (in pixels)
81 * Returns the height of this image.
83 * @return The height of this image (in pixels)
88 * Returns the title of this image.
90 * @return The title of this image
95 * Returns the description of this image.
97 * @return The description of this image
99 String getDescription();
105 String getFingerprint();
107 Modifier modify() throws IllegalStateException;
109 void moveUp() throws IllegalStateException;
111 void moveDown() throws IllegalStateException;
113 void remove() throws IllegalStateException;
117 Modifier setKey(String key);
119 Modifier setTitle(String title);
121 Modifier setDescription(String description);
123 Image update() throws IllegalStateException;