Add method to modify peer note by node identifier
[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         Executable<Boolean> byIdentifier(String identifier);
14
15 }