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

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

package net.contextfw.web.application.configuration;

public class ClassProperty extends BaseProperty> 
   implements SettableProperty> {

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

    @Override
    public Class unserialize(String value) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String serialize(Class value) {
        // TODO Auto-generated method stub
        return null;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy