Expose lots of constructors and accessors
[jFCPlib.git] / 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.
         *