Make post returned by post provider 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 /**
25  * Simple {@link PostReply} implementation.
26  *
27  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
28  */
29 public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
30
31         /** The post provider. */
32         private final PostProvider postProvider;
33
34         /** The Post this reply refers to. */
35         private volatile String postId;
36
37         /**
38          * Creates a new reply.
39          *
40          * @param postProvider
41          *            The post provider
42          * @param id
43          *            The ID of the reply
44          */
45         public PostReplyImpl(PostProvider postProvider, String id) {
46                 super(id);
47                 this.postProvider = postProvider;
48                 this.postId = postId;
49         }
50
51         //
52         // ACCESSORS
53         //
54
55         /**
56          * {@inheritDoc}
57          */
58         @Override
59         public Post getPost() {
60                 return postProvider.getPost(postId).get();
61         }
62
63         /**
64          * Sets the post this reply refers to.
65          *
66          * @param postId
67          *            The ID of the post to reply to
68          * @return This reply (for method chaining)
69          */
70         @Override
71         public PostReply setPost(String postId) {
72                 this.postId = postId;
73                 return this;
74         }
75
76 }