Add command that removes a peer from the node by name
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index ad4501d..c2333da 100644 (file)
@@ -7,10 +7,17 @@ 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();
 
 }