Merge branch 'release-0.1.5'
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / WatchFeeds.java
diff --git a/src/main/java/net/pterodactylus/fcp/WatchFeeds.java b/src/main/java/net/pterodactylus/fcp/WatchFeeds.java
new file mode 100644 (file)
index 0000000..e71df53
--- /dev/null
@@ -0,0 +1,15 @@
+package net.pterodactylus.fcp;
+
+/**
+ * Implementation of the “WatchFeeds” command.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class WatchFeeds extends FcpMessage {
+
+       public WatchFeeds(boolean enabled) {
+               super("WatchFeeds");
+               setField("Enabled", String.valueOf(enabled));
+       }
+
+}