bootstrap.group(bossGroup, workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_REUSEADDR, true);
// Set up the idle handler
IdleStateHandler idleStateHandler =
new IdleStateHandler(getReadIdleTime(), getWriteIdleTime(), 0);
// Set up the event pipeline factory.
servletPipeline =
new NettyHttpServletPipelineFactory(
tlsServerParameters, sessionSupport,
threadingParameters.getThreadPoolSize(),