if (component != null) {
component.doShutDown();
component.unregisterMbeans(managementContext);
registry.deregisterComponent(component);
environmentContext.unreregister(component);
component.dispose();
LOGGER.info("Deactivating component {}", componentName);
} else {
throw new JBIException("Could not find component " + componentName);
}
}