Add command that modifies the config of the node
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ModifyConfigCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import net.pterodactylus.fcp.ConfigData;
4
5 /**
6  * Command to modify the configuration of a node.
7  *
8  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
9  */
10 public interface ModifyConfigCommand extends Executable<ConfigData> {
11
12         WithValue set(String key);
13
14         interface WithValue {
15
16                 ModifyConfigCommand to(String value);
17
18         }
19
20 }