Add method to clear burst only on peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index 7037e3b..5fe7ab0 100644 (file)
@@ -13,8 +13,13 @@ public interface ModifyPeerCommand {
 
        ModifyPeerCommand enable();
        ModifyPeerCommand disable();
+       ModifyPeerCommand allowLocalAddresses();
+       ModifyPeerCommand disallowLocalAddresses();
+       ModifyPeerCommand setBurstOnly();
+       ModifyPeerCommand clearBurstOnly();
 
        Executable<Optional<Peer>> byName(String name);
        Executable<Optional<Peer>> byIdentity(String nodeIdentity);
+       Executable<Optional<Peer>> byHostAndPort(String host, int port);
 
 }