X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2FPostReplyProvider.java;h=8098f1df7c4165aedeaca6c2fa7ebe3a01fba72f;hp=2ad38a66824137d2f3e4e727ff58598875f7a506;hb=10fa1478fef15624a873c0878ed017603742bcfe;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..8098f1d 100644 --- a/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java +++ b/src/main/java/net/pterodactylus/sone/database/PostReplyProvider.java @@ -22,6 +22,8 @@ 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,7 +38,7 @@ 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.