Add command that modifies the note of a peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index 905dd4f..dbd35f2 100644 (file)
@@ -7,7 +7,18 @@ package net.pterodactylus.fcp.quelaton;
  */
 public interface FcpClient {
 
+       GetNodeCommand getNode();
        GenerateKeypairCommand generateKeypair();
        ClientGetCommand clientGet();
+       ClientPutCommand clientPut();
+
+       ListPeerCommand listPeer();
+       ListPeersCommand listPeers();
+       AddPeerCommand addPeer();
+       ModifyPeerCommand modifyPeer();
+       RemovePeerCommand removePeer();
+
+       ListPeerNotesCommand listPeerNotes();
+       ModifyPeerNoteCommand modifyPeerNote();
 
 }