KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > tomcat5x > Tomcat5xAppServerConfig


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

4 package com.tc.test.server.appserver.tomcat5x;
5
6 import com.tc.test.server.tcconfig.StandardTerracottaAppServerConfig;
7
8 import java.io.File JavaDoc;
9
10 /**
11  * Used to set appserver specific terracotta config elements such as excludes.
12  */

13 public class Tomcat5xAppServerConfig extends StandardTerracottaAppServerConfig {
14
15   public Tomcat5xAppServerConfig(File JavaDoc baseDir) {
16     super(baseDir);
17   }
18 }
19
Popular Tags