if (getKeepStateFromApplicationInfo(params.name())) {
_logger.log(Level.INFO,
"Timers will not be destroyed since keepstate is true for application {0}",
params.name());
} else {
timerService.destroyAllTimers(Long.parseLong(uniqueAppId));
}
}
}
} catch (Exception e) {
_logger.log( Level.WARNING, "Failed to delete timers for application with id " + uniqueAppId, e);