private ShutdownRegistry shutdownRegistry;
public synchronized ShutdownRegistry getShutdownRegistry() {
if (shutdownRegistry == null) {
shutdownRegistry = new ShutdownRegistry();
getJmxRegistry().registerMBean(shutdownRegistry, null);
}
return shutdownRegistry;
}