1 package net.pterodactylus.fcp.quelaton;
3 import net.pterodactylus.fcp.ConfigData;
6 * Command to modify the configuration of a node.
8 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
10 public interface ModifyConfigCommand extends Executable<ConfigData> {
12 WithValue set(String key);
16 ModifyConfigCommand to(String value);