Remove @author tags
[Sone.git] / src / main / java / net / pterodactylus / sone / core / event / ImageInsertFinishedEvent.java
index 0da0c82..3b239aa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - ImageInsertFinishedEvent.java - Copyright © 2013 David Roden
+ * Sone - ImageInsertFinishedEvent.java - Copyright © 2013–2016 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 package net.pterodactylus.sone.core.event;
 
 import net.pterodactylus.sone.data.Image;
+import freenet.keys.FreenetURI;
 
 /**
  * Event that signals that an {@link Image} insert is finished.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class ImageInsertFinishedEvent extends ImageEvent {
 
+       /** The URI of the image. */
+       private final FreenetURI resultingUri;
+
        /**
         * Creates a new “image insert finished” event.
         *
         * @param image
         *            The image whose insert finished
+        * @param resultingUri
+        *            The resulting URI of the image
         */
-       public ImageInsertFinishedEvent(Image image) {
+       public ImageInsertFinishedEvent(Image image, FreenetURI resultingUri) {
                super(image);
+               this.resultingUri = resultingUri;
+       }
+
+       //
+       // ACCESSORS
+       //
+
+       /**
+        * Returns the URI of the image.
+        *
+        * @return The URI of the image
+        */
+       public FreenetURI resultingUri() {
+               return resultingUri;
        }
 
 }