Add unsubscribe command
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sat, 22 Aug 2015 16:17:57 +0000 (18:17 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sat, 22 Aug 2015 16:17:57 +0000 (18:17 +0200)
src/main/java/net/pterodactylus/fcp/quelaton/UnsubscribeUskCommand.java [new file with mode: 0644]

diff --git a/src/main/java/net/pterodactylus/fcp/quelaton/UnsubscribeUskCommand.java b/src/main/java/net/pterodactylus/fcp/quelaton/UnsubscribeUskCommand.java
new file mode 100644 (file)
index 0000000..488d15b
--- /dev/null
@@ -0,0 +1,12 @@
+package net.pterodactylus.fcp.quelaton;
+
+/**
+ * Unsubscribes from a USK.
+ *
+ * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
+ */
+public interface UnsubscribeUskCommand {
+
+       Executable<Void> identifier(String identifier);
+
+}