X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2Fmemory%2FMemoryPost.java;h=f5c4597b16e3186639ddf5e3d4f9353d921cad0c;hb=b10dc3573e2bf5c053d62c85b7ce19f9488d6a3c;hp=84f37140b7832d72727b168757f24728e2f98f13;hpb=268574fb0cd808a3a575843af256f8b98b643cb6;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java b/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java index 84f3714..f5c4597 100644 --- a/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java +++ b/src/main/java/net/pterodactylus/sone/database/memory/MemoryPost.java @@ -17,8 +17,6 @@ package net.pterodactylus.sone.database.memory; -import java.util.UUID; - import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.database.SoneProvider; @@ -34,13 +32,13 @@ import com.google.common.base.Optional; class MemoryPost implements Post { /** The post database. */ - private final MemoryPostDatabase postDatabase; + private final MemoryDatabase postDatabase; /** The Sone provider. */ private final SoneProvider soneProvider; - /** The GUID of the post. */ - private final UUID id; + /** The ID of the post. */ + private final String id; /** The ID of the owning Sone. */ private final String soneId; @@ -72,10 +70,10 @@ class MemoryPost implements Post { * @param text * The text of the post */ - public MemoryPost(MemoryPostDatabase postDatabase, SoneProvider soneProvider, String id, String soneId, String recipientId, long time, String text) { + public MemoryPost(MemoryDatabase postDatabase, SoneProvider soneProvider, String id, String soneId, String recipientId, long time, String text) { this.postDatabase = postDatabase; this.soneProvider = soneProvider; - this.id = UUID.fromString(id); + this.id = id; this.soneId = soneId; this.recipientId = recipientId; this.time = time; @@ -91,7 +89,12 @@ class MemoryPost implements Post { */ @Override public String getId() { - return id.toString(); + return id; + } + + @Override + public boolean isLoaded() { + return true; } /**