int size = this.componentNames.size();
for (int i = size - 1; i >= 0; i--) {
String componentName = this.componentNames.get(i);
EZBComponent component = this.componentRegistry.getComponent(componentName);
try {
component.stop();
} catch (EZBComponentException e) {
this.logger.error("Cannot stop component with name '" + componentName + "'.", e);
}
}
}