Use database instead of separate providers.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / PostReplyImpl.java
index 361a2e9..c1a2423 100644 (file)
 
 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.database.Database;
+
+import com.google.common.base.Optional;
 
 /**
  * Simple {@link PostReply} implementation.
@@ -28,23 +30,26 @@ import net.pterodactylus.sone.data.PostReply;
  */
 public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
 
-       /** The post provider. */
-       private final PostProvider postProvider;
-
        /** The Post this reply refers to. */
-       private volatile String postId;
+       private final String postId;
 
        /**
         * Creates a new reply.
         *
-        * @param postProvider
-        *            The post provider
+        * @param database
+        *              The database
         * @param id
-        *            The ID of the reply
+        *              The ID of the reply
+        * @param soneId
+        *              The ID of the Sone of the reply
+        * @param time
+        *              The time of the reply
+        * @param text
+        *              The text of the reply
+        * @param postId
         */
-       public PostReplyImpl(PostProvider postProvider, String id) {
-               super(id);
-               this.postProvider = postProvider;
+       public PostReplyImpl(Database database, String id, String soneId, long time, String text, String postId) {
+               super(database, id, soneId, time, text);
                this.postId = postId;
        }
 
@@ -52,25 +57,16 @@ public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
        // ACCESSORS
        //
 
-       /**
-        * {@inheritDoc}
-        */
+       /** {@inheritDocs} */
        @Override
-       public Post getPost() {
-               return postProvider.getPost(postId);
+       public String getPostId() {
+               return postId;
        }
 
-       /**
-        * Sets the post this reply refers to.
-        *
-        * @param postId
-        *            The ID of the post to reply to
-        * @return This reply (for method chaining)
-        */
+       /** {@inheritDoc} */
        @Override
-       public PostReply setPost(String postId) {
-               this.postId = postId;
-               return this;
+       public Optional<Post> getPost() {
+               return database.getPost(postId);
        }
 
 }