org.apache.axiom.om.util.CopyUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axiom-compat Show documentation
Show all versions of axiom-compat Show documentation
Contains deprecated classes that will disappear in the next major release.
/*
* 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.axiom.om.util;
import org.apache.axiom.om.OMCloneOptions;
import org.apache.axiom.om.OMContainer;
import org.apache.axiom.om.OMDocument;
import org.apache.axiom.om.OMInformationItem;
import org.apache.axiom.om.OMNode;
import org.apache.axiom.om.OMXMLBuilderFactory;
import org.apache.axiom.om.OMXMLParserWrapper;
import org.apache.axiom.soap.SOAPCloneOptions;
import org.apache.axiom.soap.SOAPEnvelope;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import java.util.Iterator;
/**
* CopyUtils provides static utility methods that are useful for creating a copy of
* an OM/SOAPEnvelope tree.
* During the expansion, the Source tree retains its shape
* (OMSourcedElement nodes are not expanded).
* The Target tree has nodes that retain the class identity of the source node. For
* example, a SOAPFault in the source tree will have a SOAPFault in the target tree.
*/
public class CopyUtils {
/**
* Private Constructor
*/
private CopyUtils() {
}
/**
* @deprecated This method has the same effect as calling
* {@link OMInformationItem#clone(OMCloneOptions)} on the source
* {@link SOAPEnvelope} with the following options enabled:
*
* - {@link OMCloneOptions#setFetchDataHandlers(boolean)}
*
- {@link OMCloneOptions#setPreserveModel(boolean)}
*
- {@link OMCloneOptions#setCopyOMDataSources(boolean)}
*
* Instead of using this method, application code should use
* {@link OMInformationItem#clone(OMCloneOptions)} directly and fine tune the
* options for the particular use case.
*/
public static SOAPEnvelope copy(SOAPEnvelope sourceEnv) {
SOAPCloneOptions options = new SOAPCloneOptions();
options.setFetchDataHandlers(true);
options.setPreserveModel(true);
options.setCopyOMDataSources(true);
return (SOAPEnvelope)sourceEnv.clone(options);
}
/**
* Simple utility that takes an XMLStreamReader and writes it to an XMLStreamWriter
*
* @param reader
* @param writer
* @throws XMLStreamException
*
* @deprecated Instead use {@link OMXMLBuilderFactory#createStAXOMBuilder(XMLStreamReader)} to
* create an {@link OMDocument} and then
* {@link OMContainer#serializeAndConsume(XMLStreamWriter)} to write to the
* {@link XMLStreamWriter}.
*/
public static void reader2writer(XMLStreamReader reader,
XMLStreamWriter writer)
throws XMLStreamException {
OMXMLParserWrapper builder = OMXMLBuilderFactory.createStAXOMBuilder(reader);
try {
OMDocument omDocument = builder.getDocument();
Iterator it = omDocument.getChildren();
while (it.hasNext()) {
OMNode omNode = it.next();
omNode.serializeAndConsume(writer);
}
} finally {
builder.close();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy