4e83048462707d29a3a3002582f648f40948142f
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import java.util.Optional;
4
5 import net.pterodactylus.fcp.Peer;
6
7 /**
8  * Command that modifies certain settings of a peer.
9  *
10  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
11  */
12 public interface ModifyPeerCommand {
13
14         ModifyPeerCommand enable();
15         ModifyPeerCommand disable();
16
17         Executable<Optional<Peer>> byName(String name);
18
19 }