Add “FilterData” flag to ClientGet message.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 10 Sep 2010 04:26:40 +0000 (06:26 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 10 Sep 2010 04:26:40 +0000 (06:26 +0200)
src/main/java/net/pterodactylus/fcp/ClientGet.java

index 8b03ee4..ce2abf1 100644 (file)
@@ -174,6 +174,16 @@ public class ClientGet extends FcpMessage {
        }
 
        /**
+        * Sets whether to filter the fetched content.
+        *
+        * @param filterData
+        *            {@code true} to filter content, {@code false} otherwise
+        */
+       public void setFilterData(boolean filterData) {
+               setField("FilterData", String.valueOf(filterData));
+       }
+
+       /**
         * Sets the allowed MIME types of the requested file. If the MIME type of
         * the file does not match one of the given MIME types the request will
         * fail!