Store the time of the last update in the Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 17 Oct 2010 16:26:13 +0000 (18:26 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 17 Oct 2010 16:26:13 +0000 (18:26 +0200)
src/main/java/net/pterodactylus/sone/data/Sone.java

index 9219e99..2efb90d 100644 (file)
@@ -57,6 +57,9 @@ public class Sone {
        /* This will be null for remote Sones! */
        private FreenetURI insertUri;
 
+       /** The time of the last inserted update. */
+       private long time;
+
        /** The profile of this Sone. */
        private Profile profile;
 
@@ -159,6 +162,27 @@ public class Sone {
        }
 
        /**
+        * Return the time of the last inserted update of this Sone.
+        *
+        * @return The time of the update (in milliseconds since Jan 1, 1970 UTC)
+        */
+       public long getTime() {
+               return time;
+       }
+
+       /**
+        * Sets the time of the last inserted update of this Sone.
+        *
+        * @param time
+        *            The time of the update (in milliseconds since Jan 1, 1970 UTC)
+        * @return This Sone (for method chaining)
+        */
+       public Sone setTime(long time) {
+               this.time = time;
+               return this;
+       }
+
+       /**
         * Returns a copy of the profile. If you want to update values in the
         * profile of this Sone, update the values in the returned {@link Profile}
         * and use {@link #setProfile(Profile)} to change the profile in this Sone.