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 JonasConnectorDTDs extends CommonsDTDs { 36 37 40 private static final String [] JONAS_CONNECTOR_DTDS = new String [] { 41 "jonas-connector_3_0.dtd" 42 }; 43 44 47 private static final String [] JONAS_CONNECTOR_DTDS_PUBLIC_ID = new String [] { 48 "-//ObjectWeb//DTD JOnAS Connector 3.0//EN", 49 }; 50 51 52 55 public JonasConnectorDTDs() { 56 super(); 57 addMapping(JONAS_CONNECTOR_DTDS, JONAS_CONNECTOR_DTDS_PUBLIC_ID); 58 } 59 60 61 } 62 | Popular Tags |