713c8eb336b3bf4267f2efb2bb0df18078fb4ab4
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyPeerNoteCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 /**
4  * Command that modifies the note of a peer.
5  *
6  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
7  */
8 public interface ModifyPeerNoteCommand {
9
10         ModifyPeerNoteCommand darknetComment(String text);
11
12         Executable<Boolean> byName(String name);
13
14 }