Add lots of synchronization.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Reply.java
index cfc6d91..05d8049 100644 (file)
@@ -27,20 +27,30 @@ import java.util.UUID;
  */
 public class Reply {
 
-       /** The Sone that posted this reply. */
-       private final Sone sone;
-
        /** The ID of the reply. */
        private final UUID id;
 
+       /** The Sone that posted this reply. */
+       private volatile Sone sone;
+
        /** The Post this reply refers to. */
-       private final Post post;
+       private volatile Post post;
 
        /** The time of the reply. */
-       private final long time;
+       private volatile long time;
 
        /** The text of the reply. */
-       private final String text;
+       private volatile String text;
+
+       /**
+        * Creates a new reply.
+        *
+        * @param id
+        *            The ID of the reply
+        */
+       public Reply(String id) {
+               this(id, null, null, 0, null);
+       }
 
        /**
         * Creates a new reply.
@@ -69,7 +79,7 @@ public class Reply {
         *            The text of the reply
         */
        public Reply(Sone sone, Post post, long time, String text) {
-               this(sone, UUID.randomUUID(), post, time, text);
+               this(UUID.randomUUID().toString(), sone, post, time, text);
        }
 
        /**
@@ -86,9 +96,9 @@ public class Reply {
         * @param text
         *            The text of the reply
         */
-       public Reply(Sone sone, UUID id, Post post, long time, String text) {
+       public Reply(String id, Sone sone, Post post, long time, String text) {
+               this.id = UUID.fromString(id);
                this.sone = sone;
-               this.id = id;
                this.post = post;
                this.time = time;
                this.text = text;
@@ -99,6 +109,15 @@ public class Reply {
        //
 
        /**
+        * Returns the ID of the reply.
+        *
+        * @return The ID of the reply
+        */
+       public String getId() {
+               return id.toString();
+       }
+
+       /**
         * Returns the Sone that posted this reply.
         *
         * @return The Sone that posted this reply
@@ -108,12 +127,15 @@ public class Reply {
        }
 
        /**
-        * Returns the ID of the reply.
+        * Sets the Sone that posted this reply.
         *
-        * @return The ID of the reply
+        * @param sone
+        *            The Sone that posted this reply
+        * @return This reply (for method chaining)
         */
-       public String getId() {
-               return id.toString();
+       public Reply setSone(Sone sone) {
+               this.sone = sone;
+               return this;
        }
 
        /**
@@ -126,6 +148,18 @@ public class Reply {
        }
 
        /**
+        * Sets the post this reply refers to.
+        *
+        * @param post
+        *            The post this reply refers to
+        * @return This reply (for method chaining)
+        */
+       public Reply setPost(Post post) {
+               this.post = post;
+               return this;
+       }
+
+       /**
         * Returns the time of the reply.
         *
         * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC)
@@ -135,6 +169,18 @@ public class Reply {
        }
 
        /**
+        * Sets the time of this reply.
+        *
+        * @param time
+        *            The time of this reply (in milliseconds since Jan 1, 1970 UTC)
+        * @return This reply (for method chaining)
+        */
+       public Reply setTime(long time) {
+               this.time = time;
+               return this;
+       }
+
+       /**
         * Returns the text of the reply.
         *
         * @return The text of the reply
@@ -143,6 +189,18 @@ public class Reply {
                return text;
        }
 
+       /**
+        * Sets the text of this reply.
+        *
+        * @param text
+        *            The text of this reply
+        * @return This reply (for method chaining)
+        */
+       public Reply setText(String text) {
+               this.text = text;
+               return this;
+       }
+
        //
        // OBJECT METHODS
        //
@@ -152,7 +210,7 @@ public class Reply {
         */
        @Override
        public int hashCode() {
-               return post.hashCode() ^ id.hashCode();
+               return id.hashCode();
        }
 
        /**
@@ -163,7 +221,16 @@ public class Reply {
                if (!(object instanceof Reply)) {
                        return false;
                }
-               return ((Reply) object).post.equals(post) && ((Reply) object).id.equals(id);
+               Reply reply = (Reply) object;
+               return reply.id.equals(id);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public String toString() {
+               return getClass().getName() + "[id=" + id + ",sone=" + sone + ",post=" + post + ",time=" + time + ",text=" + text + "]";
        }
 
 }