Add profile to Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 04:19:34 +0000 (06:19 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 04:19:34 +0000 (06:19 +0200)
src/main/java/net/pterodactylus/sone/data/Sone.java

index 8b2367b..62741e7 100644 (file)
@@ -47,6 +47,9 @@ public class Sone {
        /* This will be null for remote Sones! */
        private final FreenetURI insertUri;
 
+       /** The profile of this Sone. */
+       private Profile profile;
+
        /** All friend Sones. */
        private final Set<Sone> friendSones = new HashSet<Sone>();
 
@@ -127,6 +130,28 @@ public class Sone {
        }
 
        /**
+        * 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.
+        *
+        * @return A copy of the profile
+        */
+       public Profile getProfile() {
+               return new Profile(profile);
+       }
+
+       /**
+        * Sets the profile of this Sone.
+        *
+        * @param profile
+        *            The profile to set
+        */
+       public synchronized void setProfile(Profile profile) {
+               this.profile = profile;
+               modificationCounter++;
+       }
+
+       /**
         * Returns all friend Sones of this Sone.
         *
         * @return The friend Sones of this Sone