Add command to subscribe to USK updates
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / FcpClient.java
index 065f68a..3a1043a 100644 (file)
@@ -7,6 +7,28 @@ 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();
+       ReloadPluginCommand reloadPlugin();
+       RemovePluginCommand removePlugin();
+       GetPluginInfoCommand getPluginInfo();
+
+       SubscribeUskCommand subscribeUsk();
 
 }