public Bootstrap(ChannelFactory channelFactory) {
setFactory(channelFactory);
}
public ChannelFactory getFactory() {
ChannelFactory factory = this.factory;
if (factory == null) {
throw new IllegalStateException(
"factory is not set yet.");
}
return factory;