Add method to disable peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index a608fc2..4e83048 100644 (file)
@@ -12,6 +12,8 @@ import net.pterodactylus.fcp.Peer;
 public interface ModifyPeerCommand {
 
        ModifyPeerCommand enable();
+       ModifyPeerCommand disable();
+
        Executable<Optional<Peer>> byName(String name);
 
 }