log.log(Level.INFO, "Could not boot Telnet due to missing config");
return;
}
//
TelnetLifeCycle lifeCycle = new TelnetLifeCycle(context);
lifeCycle.setConfig(config);
Integer port = context.getProperty(TELNET_PORT);
if (port == null) {
port = TELNET_PORT.defaultValue;
}
lifeCycle.setPort(port);
//
lifeCycle.init();
//
this.lifeCycle = lifeCycle;
}