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;
/** 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;
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;
*/
@Override
public String getId() {
- return id.toString();
+ return id;
}
@Override