@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());
}