X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2FSoneProvider.java;h=b944ab869c33d8bdd7ae71089a45dde85a791e76;hb=b72418365155d4c0dd89215c5aeff27feeae68dd;hp=bbe0abf5ab85926aeab9e835be69a9a833843539;hpb=45803a1c678d6811f7bbf85d50c79844031be0f0;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/database/SoneProvider.java b/src/main/java/net/pterodactylus/sone/database/SoneProvider.java index bbe0abf..b944ab8 100644 --- a/src/main/java/net/pterodactylus/sone/database/SoneProvider.java +++ b/src/main/java/net/pterodactylus/sone/database/SoneProvider.java @@ -17,8 +17,11 @@ package net.pterodactylus.sone.database; +import java.util.Collection; + import net.pterodactylus.sone.data.Sone; +import com.google.common.base.Function; import com.google.common.base.Optional; /** @@ -28,6 +31,8 @@ import com.google.common.base.Optional; */ public interface SoneProvider { + Function> getSone(); + /** * Returns the Sone with the given ID, or {@link Optional#absent()} if it * does not exist. @@ -38,4 +43,25 @@ public interface SoneProvider { */ public Optional getSone(String soneId); + /** + * Returns all Sones. + * + * @return All Sones + */ + public Collection getSones(); + + /** + * Returns all local Sones. + * + * @return All local Sones + */ + public Collection getLocalSones(); + + /** + * Returns all remote Sones. + * + * @return All remote Sones + */ + public Collection getRemoteSones(); + }