Add second constructor to GetPluginInfo command
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 21 Aug 2015 22:34:51 +0000 (00:34 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 21 Aug 2015 22:34:51 +0000 (00:34 +0200)
src/main/java/net/pterodactylus/fcp/GetPluginInfo.java

index 8ad5392..12e446e 100644 (file)
@@ -26,20 +26,20 @@ package net.pterodactylus.fcp;
  */
 public class GetPluginInfo extends FcpMessage {
 
-       /**
-        * Creates a new “GetPluginInfo” message.
-        *
-        * @param pluginName
-        *            The name of the plugin
-        * @param identifier
-        *            The identifier of the request
-        */
-       public GetPluginInfo(String pluginName, String identifier) {
+       public GetPluginInfo(String identifier) {
                super("GetPluginInfo");
-               setField("PluginName", pluginName);
                setField("Identifier", identifier);
        }
 
+       public GetPluginInfo(String pluginName, String identifier) {
+               this(identifier);
+               setField("PluginName", pluginName);
+       }
+
+       public void setPluginName(String pluginName) {
+               setField("PluginName", pluginName);
+       }
+
        /**
         * Sets whether detailed information about the plugin is wanted.
         *