for (Activation activation : _components) {
_log.debug("Deactivating " + activation.getName());
final ServiceHandler handler = activation.getHandler();
if (handler != null) {
try {
handler.stop();
} catch (Throwable e) {
BaseDeployLogger.ROOT_LOGGER.errorStoppingService(e);
}
}