webmarker-server/src/main/java/net/mindoverflow/webmarker/utils/config/ConfigEntries.java

31 lines
523 B
Java

package net.mindoverflow.webmarker.utils.config;
public enum ConfigEntries
{
WEBSERVER_PORT("port", 7344),
JWT_SECRET("secret", "changeMe"),
;
private final String path;
private Object value;
ConfigEntries(String path, Object value)
{
this.path = path;
this.value = value;
}
public String getPath() {
return path;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}