// We do this after the main grid configuration, to make sure all services are instantiated
if ( this.socketServiceConfiguration != null ) {
AcceptorFactoryService acc = null;
if ( "mina".equals( this.socketServiceConfiguration.getAcceptor() ) ) {
acc = new MinaAcceptorFactoryService();
}
if ( acc == null ) {
// Mina is the default for the moment
acc = new MinaAcceptorFactoryService();
}
socketConf = new MultiplexSocketServiceCongifuration( new MultiplexSocketServerImpl( this.socketServiceConfiguration.getIp(),
acc,
SystemEventListenerFactory.getSystemEventListener(),