From 0ed48d2a08c7d35bbe1baebe8816f9f938057ea4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 25 Nov 2015 21:35:51 +0100 Subject: [PATCH] Add better constructor and inputstream setter, deprecate old ones --- .../net/pterodactylus/fcp/FCPPluginMessage.java | 38 ++++++++++++---------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/src/main/java/net/pterodactylus/fcp/FCPPluginMessage.java b/src/main/java/net/pterodactylus/fcp/FCPPluginMessage.java index 99cb0d0..92a9949 100644 --- a/src/main/java/net/pterodactylus/fcp/FCPPluginMessage.java +++ b/src/main/java/net/pterodactylus/fcp/FCPPluginMessage.java @@ -18,6 +18,8 @@ package net.pterodactylus.fcp; +import java.io.InputStream; + /** * An “CPPluginMessage” sends a message with custom parameters and (optional) * payload to a plugin. @@ -27,24 +29,23 @@ package net.pterodactylus.fcp; public class FCPPluginMessage extends FcpMessage { /** - * Creates a new “FCPPluginMessage” message for the given plugin. - * - * @param pluginClass - * The name of the plugin class + * @deprecated Use {@link #FCPPluginMessage(String, String)} instead */ + @Deprecated public FCPPluginMessage(String pluginClass) { super("FCPPluginMessage"); setField("PluginName", pluginClass); } + public FCPPluginMessage(String identifier, String pluginClass) { + this(pluginClass); + setField("Identifier", identifier); + } + /** - * Sets the identifier of the request. Though this is still optional you - * are encouraged to include it because the plugin might reply in random - * order to requests. - * - * @param identifier - * The identifier of the request + * @deprecated Use {@link #FCPPluginMessage(String, String)} instead */ + @Deprecated public void setIdentifier(String identifier) { setField("Identifier", identifier); } @@ -53,24 +54,25 @@ public class FCPPluginMessage extends FcpMessage { * Sets a custom parameter for the plugin. * * @param key - * The key of the parameter + * The key of the parameter * @param value - * The value of the parameter + * The value of the parameter */ public void setParameter(String key, String value) { setField("Param." + key, value); } /** - * Sets the length of data of the optional payload. If you call this method - * you also have to call - * {@link #setPayloadInputStream(java.io.InputStream)} ! - * - * @param dataLength - * The length of data in the payload input stream + * @deprecated Use {@link #setData(InputStream, long)} instead */ + @Deprecated public void setDataLength(long dataLength) { setField("DataLength", String.valueOf(dataLength)); } + public void setData(InputStream payloadInputStream, long dataLength) { + setPayloadInputStream(payloadInputStream); + setDataLength(dataLength); + } + } -- 2.7.4