@SuppressWarnings("deprecation")
final LifecycleEventHandler initVfsHandler = new VfsInitializingLifecycleEventHandler();
this.registerEventHandler(initVfsHandler, LifecycleState.INITIALIZED);
// Create and Register handlers
final BasicBootstrap bootstrap = this.getBootstrap();
final LifecycleEventHandler startHandler = new KernelStartEventLifecycleEventHandler(bootstrap);
final LifecycleEventHandler stopHandler = new KernelStopEventLifecycleEventHandler(bootstrap);
this.registerEventHandler(startHandler, LifecycleState.STARTED);
this.registerEventHandler(stopHandler, LifecycleState.STOPPING);