1 26 27 package org.objectweb.jonas_client.deployment.lib; 28 29 30 import org.objectweb.jonas_lib.deployment.api.CommonsDTDs; 31 32 36 public class AppClientDTDs extends CommonsDTDs { 37 38 41 private static final String [] APPCLIENT_DTDS = new String [] { 42 "application-client_1_2.dtd", 43 "application-client_1_3.dtd" 44 }; 45 46 49 private static final String [] APPCLIENT_DTDS_PUBLIC_ID = new String [] { 50 "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN", 51 "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.3//EN" 52 }; 53 54 55 56 57 60 public AppClientDTDs() { 61 super(); 62 addMapping(APPCLIENT_DTDS, APPCLIENT_DTDS_PUBLIC_ID); 63 } 64 65 } 66 | Popular Tags |