{
// Invoke super
super.doInitialize();
// Set some lifecycle handlers
@SuppressWarnings("deprecation")
final LifecycleEventHandler ignoreXbOrder = new IgnoreXbUnorderedSequenceLifecycleEventHandler();
this.registerEventHandler(LifecycleState.INITIALIZED, ignoreXbOrder);
@SuppressWarnings("deprecation")
final LifecycleEventHandler setRmiHostname = new SetRmiHostnameLifecycleEventHandler();
this.registerEventHandler(LifecycleState.INITIALIZED, setRmiHostname);
@SuppressWarnings("deprecation")
final LifecycleEventHandler initLoggingManager = new InitLoggingManagerLifecycleEventHandler();
this.registerEventHandler(LifecycleState.INITIALIZED, initLoggingManager);
@SuppressWarnings("deprecation")
final LifecycleEventHandler ipv4Handler = new SetIPv4LifecycleEventHandler();
this.registerEventHandler(LifecycleState.INITIALIZED, ipv4Handler);
@SuppressWarnings("deprecation")
final LifecycleEventHandler repeatableParticleHandlers = new NoXbRepeatableParticleHandlersLifecycleEventHandler();
this.registerEventHandler(LifecycleState.INITIALIZED, repeatableParticleHandlers);
// Init Logging levels
//TODO Remove when we can JBLOGGING-37
this.registerEventHandler(InitLogManagerLevelsLifecycleEventHandler.INSTANCE, LifecycleState.INITIALIZED);