Package org.broadleafcommerce.openadmin.server.service.artifact.image.effects.chain

Examples of org.broadleafcommerce.openadmin.server.service.artifact.image.effects.chain.ConverterNotFoundException


        converters.put(ParameterTypeEnum.RECTANGLE.toString(), new RectangleParameterConverter());
    }

    public Parameter convertParameter(String value, String type, Double factor, boolean applyFactor) throws ConverterNotFoundException, ConversionException {
        ParameterConverter converter = converters.get(type);
        if (converter == null) throw new ConverterNotFoundException("Could not find a parameter converter with the type name: " + type);
        return converter.convert(value, factor, applyFactor);
    }
View Full Code Here

TOP

Related Classes of org.broadleafcommerce.openadmin.server.service.artifact.image.effects.chain.ConverterNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.