Package org.geowebcache.io

Examples of org.geowebcache.io.ImageIOInitializer


        Object obj = context.getBean("ioInitializer");
        Assert.assertNotNull(obj);
        Assert.assertTrue(obj instanceof ImageIOInitializer);

        // Ensure that the excluded spis are present
        ImageIOInitializer init = (ImageIOInitializer) obj;
        List<String> excluded = init.getExcludedSpis();
        Assert.assertNotNull(excluded);
        Assert.assertTrue(excluded.size() > 0);

        // Ensure that a decoder is present
        Object obj2 = context.getBean("TIFFDecoder");
View Full Code Here

TOP

Related Classes of org.geowebcache.io.ImageIOInitializer

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.