Add method to remove a peer by host name and port number
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / RemovePeerCommand.java
index 02b0d44..e9f6e1e 100644 (file)
@@ -8,5 +8,7 @@ package net.pterodactylus.fcp.quelaton;
 public interface RemovePeerCommand {
 
        Executable<Boolean> byName(String name);
+       Executable<Boolean> byIdentity(String nodeIdentity);
+       Executable<Boolean> byHostAndPort(String host, int port);
 
 }