added constructor with key and value
This commit is contained in:
@ -42,6 +42,11 @@ public class ConfigEntity implements Serializable {
|
||||
public ConfigEntity(String configKey) {
|
||||
this.configKey = configKey;
|
||||
}
|
||||
|
||||
public ConfigEntity (String configKey, String configValue) {
|
||||
this.configKey = configKey;
|
||||
this.configValue = configValue;
|
||||
}
|
||||
|
||||
public String getConfigKey() {
|
||||
return configKey;
|
||||
|
||||
Reference in New Issue
Block a user