Package de.innovationgate.wga.config

Examples of de.innovationgate.wga.config.DesignConfiguration


        // Personalisation
        userAgentVerifier = new UserAgentVerifier(_wgaConfiguration.getPersonalisationConfiguration(), this);

        // Design
        DesignConfiguration designConfig = _wgaConfiguration.getDesignConfiguration();
        designFileValidator = new DesignFileValidator(designConfig, this);
        if (designConfig.getDefaultEncoding() == null) {
            designConfig.setDefaultEncoding(DEFAULT_FILE_ENCODING);
            getLog().info("No default design file encoding configured. Using '" + DEFAULT_FILE_ENCODING + "'.");
        }
       
        if (designFileCache == null) {
            designFileCache = CacheFactory.createCache(CACHENAME_DESIGNFILES, _wgaConfiguration.getDesignConfiguration().getDesignFileCacheSize(), null);
View Full Code Here

TOP

Related Classes of de.innovationgate.wga.config.DesignConfiguration

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.