526527528529530531532533534535536
*/ public ServerSocketFactory getFactory() { if (this.factory == null) { synchronized (this) { this.factory = new DefaultServerSocketFactory(); } } return (this.factory); }
643644645646647648649650651652653
652653654655656657658659660661662
522523524525526527528529530531532
523524525526527528529530531532533
529530531532533534535536537538539
498499500501502503504505506507508
540541542543544545546547548549550
204205206207208209210211212213
*/ public ServerSocketFactory getFactory() { if (this.factory==null) { synchronized(this) { if (Constants.DEBUG) logger.debug("Creating factory"); this.factory=new DefaultServerSocketFactory(); } } return(this.factory); }
483484485486487488489490491492493