net.contextfw.web.application.configuration.BaseProperty Maven / Gradle / Ivy
package net.contextfw.web.application.configuration;
public abstract class BaseProperty {
protected BaseProperty(String key) {
this.key = key;
}
private final String key;
public String getKey() {
return key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy