{
// TODO The thread pools should be injected from spring.
serverBootstrap = new ServerBootstrap(
new NioServerSocketChannelFactory(Executors
.newFixedThreadPool(1,new NamedThreadFactory(
"Flash-Server-Boss")), Executors
.newFixedThreadPool(1,new NamedThreadFactory(
"Flash-Server-Worker"))));
return serverBootstrap;
}