added constructor with key and value
This commit is contained in:
@ -43,6 +43,11 @@ public class ConfigEntity implements Serializable {
|
||||
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