Add method to modify peers by host name and port number
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index 7037e3b..09f01ec 100644 (file)
@@ -16,5 +16,6 @@ public interface ModifyPeerCommand {
 
        Executable<Optional<Peer>> byName(String name);
        Executable<Optional<Peer>> byIdentity(String nodeIdentity);
+       Executable<Optional<Peer>> byHostAndPort(String host, int port);
 
 }