Add class that activates the FCP interface from an option.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
index 02d84cc..c71fd82 100644 (file)
@@ -26,19 +26,22 @@ import java.util.logging.Level;
 import java.util.logging.Logger;
 
 import net.pterodactylus.sone.core.Core;
+import net.pterodactylus.sone.core.Options.Option;
+import net.pterodactylus.sone.core.Options.OptionWatcher;
 import net.pterodactylus.sone.freenet.fcp.Command.AccessType;
 import net.pterodactylus.sone.freenet.fcp.Command.ErrorResponse;
 import net.pterodactylus.sone.freenet.fcp.Command.Response;
 import net.pterodactylus.util.logging.Logging;
 
-import com.google.inject.Inject;
-
 import freenet.pluginmanager.FredPluginFCP;
 import freenet.pluginmanager.PluginNotFoundException;
 import freenet.pluginmanager.PluginReplySender;
 import freenet.support.SimpleFieldSet;
 import freenet.support.api.Bucket;
 
+import com.google.common.annotations.VisibleForTesting;
+import com.google.inject.Inject;
+
 /**
  * Implementation of an FCP interface for other clients or plugins to
  * communicate with Sone.
@@ -106,6 +109,11 @@ public class FcpInterface {
        // ACCESSORS
        //
 
+       @VisibleForTesting
+       boolean isActive() {
+               return active;
+       }
+
        /**
         * Sets whether the FCP interface should handle requests. If {@code active}
         * is {@code false}, all requests are answered with an error.
@@ -216,4 +224,13 @@ public class FcpInterface {
                }
        }
 
+       public class SetActive implements OptionWatcher<Boolean> {
+
+               @Override
+               public void optionChanged(Option<Boolean> option, Boolean oldValue, Boolean newValue) {
+                       setActive(newValue);
+               }
+
+       }
+
 }