Make replies (more or less) immutable after creation.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / PostReplyImpl.java
index 361a2e9..e7b6626 100644 (file)
@@ -20,6 +20,7 @@ package net.pterodactylus.sone.data.impl;
 import net.pterodactylus.sone.core.PostProvider;
 import net.pterodactylus.sone.data.Post;
 import net.pterodactylus.sone.data.PostReply;
+import net.pterodactylus.sone.data.Sone;
 
 /**
  * Simple {@link PostReply} implementation.
@@ -32,7 +33,7 @@ public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
        private final PostProvider postProvider;
 
        /** The Post this reply refers to. */
-       private volatile String postId;
+       private final String postId;
 
        /**
         * Creates a new reply.
@@ -41,9 +42,17 @@ public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
         *            The post provider
         * @param id
         *            The ID of the reply
+        * @param sone
+        *            The Sone of the reply
+        * @param time
+        *            The time of the reply
+        * @param text
+        *            The text of the reply
+        * @param postId
+        *            The ID of the post this reply refers to
         */
-       public PostReplyImpl(PostProvider postProvider, String id) {
-               super(id);
+       public PostReplyImpl(PostProvider postProvider, String id, Sone sone, long time, String text, String postId) {
+               super(id, sone, time, text);
                this.postProvider = postProvider;
                this.postId = postId;
        }
@@ -60,17 +69,4 @@ public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
                return postProvider.getPost(postId);
        }
 
-       /**
-        * Sets the post this reply refers to.
-        *
-        * @param postId
-        *            The ID of the post to reply to
-        * @return This reply (for method chaining)
-        */
-       @Override
-       public PostReply setPost(String postId) {
-               this.postId = postId;
-               return this;
-       }
-
 }