Package com.volantis.mcs.runtime.configuration

Examples of com.volantis.mcs.runtime.configuration.StyleSheetsConfig


        TestXmlConfigurationBuilder configBuilder =
                new TestXmlConfigurationBuilder(doc);
        MarinerConfiguration config = configBuilder.buildConfiguration();
        assertNotNull(config);
        StyleSheetsConfig styleConfig = config.getStylesheetConfiguration();
        if (value != null) {
            assertNotNull("Stylesheet configuration should not be null",
                    styleConfig);
            if (value.pageLevelMaxAge != null) {
                assertEquals("Initial value and retrieved value should match",
                        value.pageLevelMaxAge,
                        styleConfig
                        .getPageLevelCacheConfiguration().getMaxAge());
            }


        } else {
View Full Code Here


        TestXmlConfigurationBuilder configBuilder =
                new TestXmlConfigurationBuilder(doc);
        MarinerConfiguration config = configBuilder.buildConfiguration();
        assertNotNull(config);
        StyleSheetsConfig styleConfig = config.getStylesheetConfiguration();
        if (value != null) {
            StyleSheetExternalGenerationConfiguration style =
                    styleConfig.getExternalCacheConfiguration();
            assertNotNull("stylesheetConfiguration", style);
            assertEquals(value.baseUrl, style.getBaseUrl());
        } else {
            assertNull("stylesheetConfiguration", styleConfig);
        }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.runtime.configuration.StyleSheetsConfig

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.