01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.mx.metadata;
23:
24: import java.io.InputStream;
25:
26: import org.jboss.logging.Logger;
27: import org.jboss.mx.service.ServiceConstants;
28: import org.xml.sax.EntityResolver;
29: import org.xml.sax.InputSource;
30:
31: /**
32: * XMBeanEntityResolver.java
33: *
34: * @author <a href="mailto:d_jencks@users.sourceforge.net">David Jencks</a>
35: * @author <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
36: * @version $Revision: 57200 $
37: *
38: * @deprecated
39: * @see org.jboss.util.xml.JBossEntityResolver
40: */
41: public class XMBeanEntityResolver implements EntityResolver,
42: ServiceConstants {
43: private static final Logger log = Logger
44: .getLogger(XMBeanEntityResolver.class);
45:
46: public InputSource resolveEntity(String publicId, String systemId) {
47: if (log.isTraceEnabled()) {
48: log.trace("resolveEntity() : publicId=" + publicId
49: + ", systemId=" + systemId);
50: }
51:
52: if (publicId == null) {
53: // let the parser open a regular URI connection to systemId
54: return null;
55: }
56:
57: try {
58: if (publicId.equals(PUBLIC_JBOSSMX_XMBEAN_DTD_1_0)) {
59: InputStream dtdStream = getClass().getResourceAsStream(
60: "/dtd/" + JBOSSMX_XMBEAN_DTD_1_0);
61: return new InputSource(dtdStream);
62: } else if (publicId.equals(PUBLIC_JBOSSMX_XMBEAN_DTD_1_1)) {
63: InputStream dtdStream = getClass().getResourceAsStream(
64: "/dtd/" + JBOSSMX_XMBEAN_DTD_1_1);
65: return new InputSource(dtdStream);
66: } else if (publicId.equals(PUBLIC_JBOSSMX_XMBEAN_DTD_1_2)) {
67: InputStream dtdStream = getClass().getResourceAsStream(
68: "/dtd/" + JBOSSMX_XMBEAN_DTD_1_2);
69: return new InputSource(dtdStream);
70: } else {
71: log.warn("Cannot resolve entity: " + publicId);
72: }
73: } catch (Exception ignore) {
74: log.error("Cannot load local entity resource for: "
75: + publicId);
76: }
77: return null;
78: }
79: }
|