Package it.geosolutions.geobatch.registry

Examples of it.geosolutions.geobatch.registry.AliasRegistry


        assertNotNull(cfg.getRetilerConfiguration());
    }

    private void dumpActionConfig(ActionConfiguration cfg) {

        AliasRegistry aliasRegistry = new AliasRegistry();
        Alias alias = new Alias();
        alias.setAliasRegistry(aliasRegistry);
        // FIXME see improvements done in the latest snapshots of GB 1.4
        //new ScriptAliasRegistrar(aliasRegistry);
        XStream xstream = new XStream();
View Full Code Here


    @Ignore
    protected ActionConfiguration loadActionConfig(String filename) throws Exception {
        File file = loadFile(filename);
        assertNotNull(file);
        AliasRegistry aliasRegistry = new AliasRegistry();
        // FIXME alias registrar is became useless with new GB flow loading
        //new ScriptAliasRegistrar(aliasRegistry); // register static info
        XStream xstream = new XStream();
        Alias alias = new Alias();
        alias.setAliasRegistry(aliasRegistry);
View Full Code Here

TOP

Related Classes of it.geosolutions.geobatch.registry.AliasRegistry

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.