All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.contextfw.web.application.internal.configuration.BasicSettableProperty Maven / Gradle / Ivy

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