2 * Sone - PostReplyImpl.java - Copyright © 2010–2013 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.data.impl;
20 import net.pterodactylus.sone.data.Post;
21 import net.pterodactylus.sone.data.PostReply;
22 import net.pterodactylus.sone.database.Database;
24 import com.google.common.base.Optional;
27 * Simple {@link PostReply} implementation.
29 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31 public class DefaultPostReply extends DefaultReply<PostReply> implements PostReply {
33 /** The Post this reply refers to. */
34 private final String postId;
37 * Creates a new reply.
44 * The ID of the Sone of the reply
46 * The time of the reply
48 * The text of the reply
51 public DefaultPostReply(Database database, String id, String soneId, long time, String text, String postId) {
52 super(database, id, soneId, time, text);
61 public boolean isKnown() {
62 return database.isPostReplyKnown(this);
66 public String getPostId() {
71 public Optional<Post> getPost() {
72 return database.getPost(postId);
76 public Modifier<PostReply> modify() {
77 return new Modifier<PostReply>() {
78 private boolean known = isKnown();
81 public Modifier<PostReply> setKnown() {
87 public PostReply update(Optional<ReplyUpdated<PostReply>> replyUpdated) {
89 database.setPostReplyKnown(DefaultPostReply.this);
91 if (replyUpdated.isPresent()) {
92 replyUpdated.get().replyUpdated(DefaultPostReply.this);
94 return DefaultPostReply.this;