blob: c8db219f0fb175f575ed61db1df887bc0138ee23 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.converter.xmlbeans;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.nio.ByteBuffer;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Source;
import javax.xml.transform.TransformerException;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import org.apache.camel.Converter;
import org.apache.camel.Exchange;
import org.apache.camel.converter.IOConverter;
import org.apache.camel.converter.NIOConverter;
import org.apache.camel.converter.jaxp.XmlConverter;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.impl.piccolo.xml.XMLStreamReader;
/**
* A <a href="http://camel.apache.org/type-coverter.html">Type Converter</a>
* of XMLBeans objects
*
* @version
*/
@Converter
public class XmlBeansConverter {
private XmlConverter xmlConverter = new XmlConverter();
@Converter
public static XmlObject toXmlObject(File value) throws IOException, XmlException {
return XmlObject.Factory.parse(value);
}
@Converter
public static XmlObject toXmlObject(Reader value) throws IOException, XmlException {
return XmlObject.Factory.parse(value);
}
@Converter
public static XmlObject toXmlObject(Node value) throws IOException, XmlException {
return XmlObject.Factory.parse(value);
}
@Converter
public static XmlObject toXmlObject(InputStream value) throws IOException, XmlException {
return XmlObject.Factory.parse(value);
}
@Converter
public static XmlObject toXmlObject(String value, Exchange exchange) throws IOException, XmlException {
return toXmlObject(IOConverter.toInputStream(value, exchange));
}
@Converter
public static XmlObject toXmlObject(byte[] value) throws IOException, XmlException {
return toXmlObject(IOConverter.toInputStream(value));
}
@Converter
public static XmlObject toXmlObject(ByteBuffer value) throws IOException, XmlException {
return toXmlObject(NIOConverter.toInputStream(value));
}
@Converter
public static XmlObject toXmlObject(XMLStreamReader value) throws IOException, XmlException {
return XmlObject.Factory.parse(value);
}
@Converter
public XmlObject toXmlObject(Source value) throws IOException, XmlException, TransformerException, ParserConfigurationException, SAXException {
Document document = getXmlConverter().toDOMDocument(value);
return toXmlObject(document);
}
// Properties
//-------------------------------------------------------------------------
public XmlConverter getXmlConverter() {
return xmlConverter;
}
public void setXmlConverter(XmlConverter xmlConverter) {
this.xmlConverter = xmlConverter;
}
}