Add command to subscribe to USK updates
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index c2333da..3a1043a 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();
@@ -19,5 +22,13 @@ public interface FcpClient {
        RemovePeerCommand removePeer();
 
        ListPeerNotesCommand listPeerNotes();
+       ModifyPeerNoteCommand modifyPeerNote();
+
+       LoadPluginCommand loadPlugin();
+       ReloadPluginCommand reloadPlugin();
+       RemovePluginCommand removePlugin();
+       GetPluginInfoCommand getPluginInfo();
+
+       SubscribeUskCommand subscribeUsk();
 
 }