added constructor with key and value

This commit is contained in:
jomu
2017-02-19 16:18:09 +00:00
parent 8f8dc3e5f9
commit ae150a942f

View File

@ -43,6 +43,11 @@ public class ConfigEntity implements Serializable {
this.configKey = configKey; this.configKey = configKey;
} }
public ConfigEntity (String configKey, String configValue) {
this.configKey = configKey;
this.configValue = configValue;
}
public String getConfigKey() { public String getConfigKey() {
return configKey; return configKey;
} }