log.debug("Sending application stop events");
boolean ok = true;
Object listeners[] = getApplicationLifecycleListeners();
if (listeners != null && (listeners.length > 0)) {
ServletContextEvent event =
new ServletContextEvent(getServletContext());
for (int i = listeners.length - 1; i >= 0; i--) {
if (listeners[i] == null)
continue;
if (listeners[i] instanceof ServletContextListener) {
ServletContextListener listener =