*/
@Override
protected void startInternal() throws ServerLifecycleException, IllegalStateException {
// Set up Netty Boostrap
final ServerBootstrap bootstrap = new ServerBootstrap().group(new NioEventLoopGroup(), new NioEventLoopGroup())
.channel(NioServerSocketChannel.class).localAddress(this.getBindAddress())
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
public void initChannel(final SocketChannel channel) throws Exception {
final ChannelPipeline pipeline = channel.pipeline();