Add method to set burst only for peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
index 09f01ec..5cba91a 100644 (file)
@@ -13,6 +13,9 @@ public interface ModifyPeerCommand {
 
        ModifyPeerCommand enable();
        ModifyPeerCommand disable();
+       ModifyPeerCommand allowLocalAddresses();
+       ModifyPeerCommand disallowLocalAddresses();
+       ModifyPeerCommand setBurstOnly();
 
        Executable<Optional<Peer>> byName(String name);
        Executable<Optional<Peer>> byIdentity(String nodeIdentity);