KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > server > StandardServerFactory


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.tc.server;
6
7 import com.tc.config.schema.setup.L2TVSConfigurationSetupManager;
8 import com.tc.lang.TCThreadGroup;
9
10 public class StandardServerFactory extends AbstractServerFactory {
11   public TCServer createServer(L2TVSConfigurationSetupManager configurationSetupManager, TCThreadGroup threadGroup) {
12     return new TCServerImpl(configurationSetupManager, threadGroup);
13   }
14 }
15
Popular Tags