KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > war > DtdWar


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.war;
5
6 /**
7  * Creates a war that uses a dtd compliant web.xml file. Schema is not supported by older containers.
8  */

9 public class DtdWar extends AbstractWar {
10   
11   public DtdWar(String JavaDoc appName) {
12     super(appName, new Dtd2x3WebXml(appName));
13   }
14 }
15
Popular Tags