417418419420421422423424425426427
OServerHandler handler; for (OServerHandlerConfiguration h : configuration.handlers) { handler = (OServerHandler) Class.forName(h.clazz).newInstance(); handlers.add(handler); handler.config(this, h.parameters); handler.startup(); } } }
409410411412413414415416417418419
401402403404405406407408409410411