merged the config commands into one command for setting the appropriate value

This commit is contained in:
Sheldan
2020-05-11 15:39:11 +02:00
parent e314ec178d
commit 6b37b9e8b7
14 changed files with 32 additions and 66 deletions

View File

@@ -8,6 +8,7 @@ public interface ConfigService {
Long getLongValue(String name, Long serverId, Long defaultValue);
void setDoubleValue(String name, Long serverId, Double value);
void setLongValue(String name, Long serverId, Long value);
void setConfigValue(String name, Long serverId, String value);
void setStringValue(String name, Long serverId, String value);
}