com.jslsolucoes.properties.ee.factory.Property Maven / Gradle / Ivy
The newest version!
package com.jslsolucoes.properties.ee.factory;
public class Property {
private String key;
private String defaultValue;
public Property() {
}
public Property(String key, String defaultValue) {
this.key = key;
this.defaultValue = defaultValue;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getDefaultValue() {
return defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy