Make replies (more or less) immutable after creation.
[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 import net.pterodactylus.sone.data.Sone;
24
25 /**
26  * Simple {@link PostReply} implementation.
27  *
28  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29  */
30 public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
31
32         /** The post provider. */
33         private final PostProvider postProvider;
34
35         /** The Post this reply refers to. */
36         private final String postId;
37
38         /**
39          * Creates a new reply.
40          *
41          * @param postProvider
42          *            The post provider
43          * @param id
44          *            The ID of the reply
45          * @param sone
46          *            The Sone of the reply
47          * @param time
48          *            The time of the reply
49          * @param text
50          *            The text of the reply
51          * @param postId
52          *            The ID of the post this reply refers to
53          */
54         public PostReplyImpl(PostProvider postProvider, String id, Sone sone, long time, String text, String postId) {
55                 super(id, sone, time, text);
56                 this.postProvider = postProvider;
57                 this.postId = postId;
58         }
59
60         //
61         // ACCESSORS
62         //
63
64         /**
65          * {@inheritDoc}
66          */
67         @Override
68         public Post getPost() {
69                 return postProvider.getPost(postId);
70         }
71
72 }