01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10:
11: package org.mmbase.bridge.util.xml;
12:
13: import org.mmbase.bridge.Cloud;
14: import org.w3c.dom.Document;
15:
16: /**
17: * Tries to convert a given xml document to another document, using the Cloud if nessecary
18: *
19: * @author Michiel Meeuwissen
20: * @author Eduard Witteveen
21: * @version $Id: DocumentConverter.java,v 1.4 2005/01/30 16:46:36 nico Exp $
22: */
23: public class DocumentConverter {
24:
25: public static DocumentConverter getDocumentConverter(
26: String requiredDocType) {
27: return new DocumentConverter();
28: }
29:
30: public Document convert(Document doc, Cloud cloud) {
31: return doc;
32: }
33: }
|