net.contextfw.web.application.configuration.ObjectProperty Maven / Gradle / Ivy
package net.contextfw.web.application.configuration;
public class ObjectProperty extends BaseProperty
implements SettableProperty {
public ObjectProperty(String key) {
super(key);
}
@Override
public T unserialize(String value) {
throw new UnsupportedOperationException();
}
@Override
public String serialize(T value) {
throw new UnsupportedOperationException();
}
@Override
public T validate(T value) {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy