Add command that modifies the note of a peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index 5cbec0f..dbd35f2 100644 (file)
@@ -12,6 +12,13 @@ public interface FcpClient {
        ClientGetCommand clientGet();
        ClientPutCommand clientPut();
 
+       ListPeerCommand listPeer();
        ListPeersCommand listPeers();
+       AddPeerCommand addPeer();
+       ModifyPeerCommand modifyPeer();
+       RemovePeerCommand removePeer();
+
+       ListPeerNotesCommand listPeerNotes();
+       ModifyPeerNoteCommand modifyPeerNote();
 
 }