Make post returned by post reply optional.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / PostReplyImpl.java
1 /*
2  * Sone - PostReplyImpl.java - Copyright © 2010–2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.data.impl;
19
20 import net.pterodactylus.sone.core.PostProvider;
21 import net.pterodactylus.sone.data.Post;
22 import net.pterodactylus.sone.data.PostReply;
23
24 import com.google.common.base.Optional;
25
26 /**
27  * Simple {@link PostReply} implementation.
28  *
29  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
30  */
31 public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
32
33         /** The post provider. */
34         private final PostProvider postProvider;
35
36         /** The Post this reply refers to. */
37         private volatile String postId;
38
39         /**
40          * Creates a new reply.
41          *
42          * @param postProvider
43          *            The post provider
44          * @param id
45          *            The ID of the reply
46          */
47         public PostReplyImpl(PostProvider postProvider, String id) {
48                 super(id);
49                 this.postProvider = postProvider;
50                 this.postId = postId;
51         }
52
53         //
54         // ACCESSORS
55         //
56
57         /**
58          * {@inheritDocs}
59          */
60         @Override
61         public String getPostId() {
62                 return postId;
63         }
64
65         /**
66          * {@inheritDoc}
67          */
68         @Override
69         public Optional<Post> getPost() {
70                 return postProvider.getPost(postId);
71         }
72
73         /**
74          * Sets the post this reply refers to.
75          *
76          * @param postId
77          *            The ID of the post to reply to
78          * @return This reply (for method chaining)
79          */
80         @Override
81         public PostReply setPost(String postId) {
82                 this.postId = postId;
83                 return this;
84         }
85
86 }