com.sun.xml.messaging.saaj.soap.SOAPDocumentFragment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://oss.oracle.com/licenses/CDDL+GPL-1.1
* or LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.xml.messaging.saaj.soap;
import com.sun.xml.messaging.saaj.soap.impl.NodeListImpl;
import org.w3c.dom.*;
/**
* SAAJ wrapper for {@link DocumentFragment}
*
* @author Yan GAO.
*/
public class SOAPDocumentFragment implements DocumentFragment {
private SOAPDocumentImpl soapDocument;
private DocumentFragment documentFragment;
public SOAPDocumentFragment(SOAPDocumentImpl ownerDoc) {
this.soapDocument = ownerDoc;
this.documentFragment = soapDocument.getDomDocument().createDocumentFragment();
}
public SOAPDocumentFragment(SOAPDocumentImpl soapDocument, DocumentFragment documentFragment) {
this.soapDocument = soapDocument;
this.documentFragment = documentFragment;
}
public SOAPDocumentFragment() {}
@Override
public boolean hasAttributes() {
return documentFragment.hasAttributes();
}
@Override
public boolean isSameNode(Node other) {
return documentFragment.isSameNode(getDomNode(other));
}
@Override
public String lookupNamespaceURI(String prefix) {
return documentFragment.lookupNamespaceURI(prefix);
}
@Override
public Node getParentNode() {
return soapDocument.findIfPresent(documentFragment.getParentNode());
}
@Override
public Node getFirstChild() {
return soapDocument.findIfPresent(documentFragment.getFirstChild());
}
@Override
public Object getUserData(String key) {
return documentFragment.getUserData(key);
}
@Override
public String getTextContent() throws DOMException {
return documentFragment.getTextContent();
}
@Override
public short getNodeType() {
return documentFragment.getNodeType();
}
public Node getDomNode(Node node) {
return soapDocument.getDomNode(node);
}
@Override
public Node appendChild(Node newChild) throws DOMException {
Node node = soapDocument.importNode(newChild, true);
return soapDocument.findIfPresent(documentFragment.appendChild(getDomNode(node)));
}
@Override
public Node removeChild(Node oldChild) throws DOMException {
return soapDocument.findIfPresent(documentFragment.removeChild(getDomNode(oldChild)));
}
@Override
public NamedNodeMap getAttributes() {
return documentFragment.getAttributes();
}
@Override
public short compareDocumentPosition(Node other) throws DOMException {
return documentFragment.compareDocumentPosition(getDomNode(other));
}
@Override
public void setTextContent(String textContent) throws DOMException {
documentFragment.setTextContent(textContent);
}
@Override
public Node insertBefore(Node newChild, Node refChild) throws DOMException {
Node node = soapDocument.importNode(newChild, true);
return soapDocument.findIfPresent(documentFragment.insertBefore(getDomNode(node), getDomNode(refChild)));
}
@Override
public Object setUserData(String key, Object data, UserDataHandler handler) {
return documentFragment.setUserData(key, data, handler);
}
@Override
public boolean isDefaultNamespace(String namespaceURI) {
return documentFragment.isDefaultNamespace(namespaceURI);
}
@Override
public Node getLastChild() {
return soapDocument.findIfPresent(documentFragment.getLastChild());
}
@Override
public void setPrefix(String prefix) throws DOMException {
documentFragment.setPrefix(prefix);
}
@Override
public String getNodeName() {
return documentFragment.getNodeName();
}
@Override
public void setNodeValue(String nodeValue) throws DOMException {
documentFragment.setNodeValue(nodeValue);
}
@Override
public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
Node node = soapDocument.importNode(newChild, true);
return soapDocument.findIfPresent(documentFragment.replaceChild(getDomNode(node), getDomNode(oldChild)));
}
@Override
public String getLocalName() {
return documentFragment.getLocalName();
}
@Override
public void normalize() {
documentFragment.normalize();
}
@Override
public Node cloneNode(boolean deep) {
Node node= documentFragment.cloneNode(deep);
soapDocument.registerChildNodes(node, deep);
return soapDocument.findIfPresent(node);
}
@Override
public boolean isSupported(String feature, String version) {
return documentFragment.isSupported(feature, version);
}
@Override
public boolean isEqualNode(Node arg) {
return documentFragment.isEqualNode(getDomNode(arg));
}
@Override
public boolean hasChildNodes() {
return documentFragment.hasChildNodes();
}
@Override
public String lookupPrefix(String namespaceURI) {
return documentFragment.lookupPrefix(namespaceURI);
}
@Override
public String getNodeValue() throws DOMException {
return documentFragment.getNodeValue();
}
@Override
public Document getOwnerDocument() {
return soapDocument;
}
@Override
public Object getFeature(String feature, String version) {
return documentFragment.getFeature(feature, version);
}
@Override
public Node getPreviousSibling() {
return soapDocument.findIfPresent(documentFragment.getPreviousSibling());
}
@Override
public NodeList getChildNodes() {
return new NodeListImpl(soapDocument, documentFragment.getChildNodes());
}
@Override
public String getBaseURI() {
return documentFragment.getBaseURI();
}
@Override
public Node getNextSibling() {
return soapDocument.findIfPresent(documentFragment.getNextSibling());
}
@Override
public String getPrefix() {
return documentFragment.getPrefix();
}
@Override
public String getNamespaceURI() {
return documentFragment.getNamespaceURI();
}
public Document getSoapDocument() {
return soapDocument;
}
public Node getDomNode() {
return documentFragment;
}
}