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

net.contextfw.web.application.configuration.BooleanProperty Maven / Gradle / Ivy

package net.contextfw.web.application.configuration;

public class BooleanProperty extends BaseProperty 
   implements SettableProperty {

    public BooleanProperty(String key) {
        super(key);
    }

    @Override
    public Boolean unserialize(String value) {
        return value == null ? null : Boolean.parseBoolean(value);
    }

    @Override
    public String serialize(Boolean value) {
        return value == null ? null : value.toString();
    }

    @Override
    public Boolean validate(Boolean value) {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy