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