1 26 27 package org.objectweb.jonas_rar.deployment.lib; 28 29 import org.objectweb.jonas_lib.deployment.api.CommonsDTDs; 30 31 35 public class ConnectorDTDs extends CommonsDTDs { 36 37 40 private static final String [] CONNECTOR_DTDS = new String [] { 41 "connector_1_0.dtd" 42 }; 43 44 47 private static final String [] CONNECTOR_DTDS_PUBLIC_ID = new String [] { 48 "-//Sun Microsystems, Inc.//DTD Connector 1.0//EN" 49 }; 50 51 52 53 56 public ConnectorDTDs() { 57 super(); 58 addMapping(CONNECTOR_DTDS, CONNECTOR_DTDS_PUBLIC_ID); 59 } 60 61 } 62 | Popular Tags |