Add command that loads a plugin
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index ad4501d..5b3b2b1 100644 (file)
@@ -7,10 +7,23 @@ package net.pterodactylus.fcp.quelaton;
  */
 public interface FcpClient {
 
+       GetNodeCommand getNode();
+       GetConfigCommand getConfig();
+       ModifyConfigCommand modifyConfig();
+
        GenerateKeypairCommand generateKeypair();
        ClientGetCommand clientGet();
        ClientPutCommand clientPut();
 
+       ListPeerCommand listPeer();
        ListPeersCommand listPeers();
+       AddPeerCommand addPeer();
+       ModifyPeerCommand modifyPeer();
+       RemovePeerCommand removePeer();
+
+       ListPeerNotesCommand listPeerNotes();
+       ModifyPeerNoteCommand modifyPeerNote();
+
+       LoadPluginCommand loadPlugin();
 
 }