5d5d7f02ea0515249ee744b00dd732b29d4c174b
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / PostReplyImpl.java
1 /*
2  * Sone - PostReplyImpl.java - Copyright © 2010–2016 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 static com.google.common.base.Optional.fromNullable;
21
22 import net.pterodactylus.sone.data.Post;
23 import net.pterodactylus.sone.data.PostReply;
24 import net.pterodactylus.sone.database.PostProvider;
25 import net.pterodactylus.sone.database.SoneProvider;
26
27 import com.google.common.base.Optional;
28
29 /**
30  * Simple {@link PostReply} implementation.
31  */
32 public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
33
34         /** The post provider. */
35         private final PostProvider postProvider;
36
37         /** The Post this reply refers to. */
38         private final String postId;
39
40         /**
41          * Creates a new reply.
42          *
43          * @param soneProvider
44          *            The Sone provider
45          * @param postProvider
46          *            The post provider
47          * @param id
48          *            The ID of the reply
49          * @param soneId
50          *            The ID of the Sone of the reply
51          * @param time
52          *            The time of the reply
53          * @param text
54          *            The text of the reply
55          * @param postId
56          *            The ID of the post this reply refers to
57          */
58         public PostReplyImpl(SoneProvider soneProvider, PostProvider postProvider, String id, String soneId, long time, String text, String postId) {
59                 super(soneProvider, id, soneId, time, text);
60                 this.postProvider = postProvider;
61                 this.postId = postId;
62         }
63
64         //
65         // ACCESSORS
66         //
67
68         /**
69          * {@inheritDocs}
70          */
71         @Override
72         public String getPostId() {
73                 return postId;
74         }
75
76         /**
77          * {@inheritDoc}
78          */
79         @Override
80         public Optional<Post> getPost() {
81                 return fromNullable(postProvider.getPost(postId));
82         }
83
84 }