X-Git-Url: https://git.pterodactylus.net/?p=jFCPlib.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FWatchFeeds.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FWatchFeeds.java;h=e71df532a73715688ec598fe451fad82a88ec4c5;hp=0000000000000000000000000000000000000000;hb=9ca04a65290ac61ec8c960bff194e5340718111a;hpb=14edf617ab865e3634f243c87ac1cb636c055b6c diff --git a/src/main/java/net/pterodactylus/fcp/WatchFeeds.java b/src/main/java/net/pterodactylus/fcp/WatchFeeds.java new file mode 100644 index 0000000..e71df53 --- /dev/null +++ b/src/main/java/net/pterodactylus/fcp/WatchFeeds.java @@ -0,0 +1,15 @@ +package net.pterodactylus.fcp; + +/** + * Implementation of the “WatchFeeds” command. + * + * @author David ‘Bombe’ Roden + */ +public class WatchFeeds extends FcpMessage { + + public WatchFeeds(boolean enabled) { + super("WatchFeeds"); + setField("Enabled", String.valueOf(enabled)); + } + +}