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; } }