X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=80c31c2e05081a99e61dc4477e24e3e823074446;hb=8b6ea0e3f05c3b9f3041158f3bc54ed00828b207;hp=970d9e91e5f450873b1bdbd059b66461f25c6112;hpb=455d843a2d2c785a317085e085d4265988b3c0da;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/CoreListener.java b/src/main/java/net/pterodactylus/sone/core/CoreListener.java index 970d9e9..80c31c2 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -20,9 +20,6 @@ package net.pterodactylus.sone.core; import java.util.EventListener; import net.pterodactylus.sone.data.Image; -import net.pterodactylus.sone.data.Post; -import net.pterodactylus.sone.data.PostReply; -import net.pterodactylus.sone.data.Sone; import net.pterodactylus.util.version.Version; /** @@ -34,70 +31,6 @@ import net.pterodactylus.util.version.Version; public interface CoreListener extends EventListener { /** - * Notifies a listener that the given post was removed. - * - * @param post - * The removed post - */ - public void postRemoved(Post post); - - /** - * Notifies a listener that the given reply was removed. - * - * @param reply - * The removed reply - */ - public void replyRemoved(PostReply reply); - - /** - * Notifies a listener when a Sone was locked. - * - * @param sone - * The Sone that was locked - */ - public void soneLocked(Sone sone); - - /** - * Notifies a listener that a Sone was unlocked. - * - * @param sone - * The Sone that was unlocked - */ - public void soneUnlocked(Sone sone); - - /** - * Notifies a listener that the insert of the given Sone has started. - * - * @see SoneInsertListener#insertStarted(Sone) - * @param sone - * The Sone that is being inserted - */ - public void soneInserting(Sone sone); - - /** - * Notifies a listener that the insert of the given Sone has finished - * successfully. - * - * @see SoneInsertListener#insertFinished(Sone, long) - * @param sone - * The Sone that has been inserted - * @param insertDuration - * The insert duration (in milliseconds) - */ - public void soneInserted(Sone sone, long insertDuration); - - /** - * Notifies a listener that the insert of the given Sone was aborted. - * - * @see SoneInsertListener#insertAborted(Sone, Throwable) - * @param sone - * The Sone that was inserted - * @param cause - * The cause for the abortion (may be {@code null}) - */ - public void soneInsertAborted(Sone sone, Throwable cause); - - /** * Notifies a listener that a new version has been found. * * @param version