Package org.arquillian.spacelift.tool

Examples of org.arquillian.spacelift.tool.ToolRegistry


    @Inject
    private Event<ToolRegistryInitialized> toolRegistryInitializedEvent;

    public void createToolRegistry(@Observes ExecutionServiceInitialized event) {

        ToolRegistry registry = new ToolRegistryImpl();

        toolRegistry.set(registry);
        log.log(Level.FINE, "Registered Tool Registry");

        registry.register(DownloadTool.class);
        registry.register(UnzipTool.class);

        toolRegistryInitializedEvent.fire(new ToolRegistryInitialized());
    }
View Full Code Here

TOP

Related Classes of org.arquillian.spacelift.tool.ToolRegistry

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.