Move provider interfaces to database package.
[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.data.Post;
21 import net.pterodactylus.sone.data.PostReply;
22 import net.pterodactylus.sone.database.PostProvider;
23 import net.pterodactylus.sone.database.SoneProvider;
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 soneProvider
42          *            The Sone provider
43          * @param postProvider
44          *            The post provider
45          * @param id
46          *            The ID of the reply
47          * @param soneId
48          *            The ID of the Sone of the reply
49          * @param time
50          *            The time of the reply
51          * @param text
52          *            The text of the reply
53          * @param postId
54          *            The ID of the post this reply refers to
55          */
56         public PostReplyImpl(SoneProvider soneProvider, PostProvider postProvider, String id, String soneId, long time, String text, String postId) {
57                 super(soneProvider, id, soneId, time, text);
58                 this.postProvider = postProvider;
59                 this.postId = postId;
60         }
61
62         //
63         // ACCESSORS
64         //
65
66         /**
67          * {@inheritDoc}
68          */
69         @Override
70         public Post getPost() {
71                 return postProvider.getPost(postId);
72         }
73
74 }