01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.server;
06:
07: import com.tc.config.schema.setup.L2TVSConfigurationSetupManager;
08: import com.tc.lang.TCThreadGroup;
09:
10: public class StandardServerFactory extends AbstractServerFactory {
11: public TCServer createServer(
12: L2TVSConfigurationSetupManager configurationSetupManager,
13: TCThreadGroup threadGroup) {
14: return new TCServerImpl(configurationSetupManager, threadGroup);
15: }
16: }
|