1 26 27 package org.objectweb.jonas_web.deployment.lib; 28 29 import org.objectweb.jonas_lib.deployment.api.CommonsDTDs; 30 31 35 public class WebAppDTDs extends CommonsDTDs { 36 37 40 private static final String [] WEBAPP_DTDS = new String [] { 41 "web-app_2_2.dtd", 42 "web-app_2_3.dtd" 43 }; 44 45 48 private static final String [] WEBAPP_DTDS_PUBLIC_ID = new String [] { 49 "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN", 50 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN", 51 }; 52 53 54 55 58 public WebAppDTDs() { 59 super(); 60 addMapping(WEBAPP_DTDS, WEBAPP_DTDS_PUBLIC_ID); 61 } 62 63 } 64 | Popular Tags |