/**
* Start accepting connections by this <code>Connector</code>.
*/
public void start() throws LifecycleException {
if (!initialized) this.initialize();
if (started) throw new LifecycleException("Already started");
// Can't get a hold of a server socket
if (this.server==null)
throw new LifecycleException("Server socket not created");
lifecycle.fireLifecycleEvent(START_EVENT, null);
this.started = true;