net.contextfw.web.application.internal.configuration.BasicSettableProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-application Show documentation
Show all versions of web-application Show documentation
Context Web Application Framework
The newest version!
package net.contextfw.web.application.internal.configuration;
import net.contextfw.web.application.configuration.SettableProperty;
public class BasicSettableProperty extends BaseProperty implements SettableProperty {
public BasicSettableProperty(String key) {
super(key);
}
@Override
public T validate(T value) {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy