X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2FPostReplyProvider.java;h=e9825991c8f1160150ad71261c92006a4e8aacaf;hp=2ad38a66824137d2f3e4e727ff58598875f7a506;hb=3d6cffe82270a1faacf1f0d39c34b11ab316e0db;hpb=658a702c550e15bd3c868ed399621606eeb4ef20 diff --git a/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java b/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java index 2ad38a6..e982599 100644 --- a/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java +++ b/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java @@ -1,5 +1,5 @@ /* - * Sone - PostReplyProvider.java - Copyright © 2013 David Roden + * Sone - PostReplyProvider.java - Copyright © 2013–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,9 +19,10 @@ package net.pterodactylus.sone.database; import java.util.List; -import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.data.PostReply; +import com.google.common.base.Optional; + /** * Interface for objects that can provide {@link PostReply}s. * @@ -36,15 +37,15 @@ public interface PostReplyProvider { * The ID of the reply to get * @return The reply, or {@code null} if there is no such reply */ - public PostReply getPostReply(String id); + public Optional getPostReply(String id); /** * Returns all replies for the given post, order ascending by time. * - * @param post - * The post to get all replies for + * @param postId + * The ID of the post to get all replies for * @return All replies for the given post */ - public List getReplies(Post post); + public List getReplies(String postId); }