Add method to clear listen only on a peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index 6987d9a..d421ae1 100644 (file)
@@ -14,6 +14,11 @@ public interface ModifyPeerCommand {
        ModifyPeerCommand enable();
        ModifyPeerCommand disable();
        ModifyPeerCommand allowLocalAddresses();
+       ModifyPeerCommand disallowLocalAddresses();
+       ModifyPeerCommand setBurstOnly();
+       ModifyPeerCommand clearBurstOnly();
+       ModifyPeerCommand setListenOnly();
+       ModifyPeerCommand clearListenOnly();
 
        Executable<Optional<Peer>> byName(String name);
        Executable<Optional<Peer>> byIdentity(String nodeIdentity);