src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/SOAPFactoryImpl.java

Wed, 27 Apr 2016 01:27:09 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:27:09 +0800
changeset 0
373ffda63c9a
child 637
9c07ef4934dd
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/jaxws/
changeset: 657:d47a47f961ee
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation. Oracle designates this
aoqi@0 8 * particular file as subject to the "Classpath" exception as provided
aoqi@0 9 * by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 *
aoqi@0 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 * accompanied this code).
aoqi@0 16 *
aoqi@0 17 * You should have received a copy of the GNU General Public License version
aoqi@0 18 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 *
aoqi@0 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 * or visit www.oracle.com if you need additional information or have any
aoqi@0 23 * questions.
aoqi@0 24 */
aoqi@0 25
aoqi@0 26 package com.sun.xml.internal.messaging.saaj.soap;
aoqi@0 27
aoqi@0 28 import java.util.logging.Logger;
aoqi@0 29 import java.util.logging.Level;
aoqi@0 30
aoqi@0 31 import javax.xml.namespace.QName;
aoqi@0 32 import javax.xml.soap.*;
aoqi@0 33
aoqi@0 34 import com.sun.xml.internal.messaging.saaj.soap.impl.ElementFactory;
aoqi@0 35 import com.sun.xml.internal.messaging.saaj.soap.impl.ElementImpl;
aoqi@0 36 import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
aoqi@0 37 import com.sun.xml.internal.messaging.saaj.util.*;
aoqi@0 38
aoqi@0 39 import org.w3c.dom.Element;
aoqi@0 40 import org.w3c.dom.Document;
aoqi@0 41 import org.w3c.dom.NodeList;
aoqi@0 42 import org.w3c.dom.NamedNodeMap;
aoqi@0 43 import org.w3c.dom.Attr;
aoqi@0 44
aoqi@0 45 public abstract class SOAPFactoryImpl extends SOAPFactory {
aoqi@0 46
aoqi@0 47 protected static final Logger
aoqi@0 48 log = Logger.getLogger(LogDomainConstants.SOAP_DOMAIN,
aoqi@0 49 "com.sun.xml.internal.messaging.saaj.soap.LocalStrings");
aoqi@0 50
aoqi@0 51 protected abstract SOAPDocumentImpl createDocument();
aoqi@0 52
aoqi@0 53 public SOAPElement createElement(String tagName) throws SOAPException {
aoqi@0 54 if (tagName == null) {
aoqi@0 55 log.log(
aoqi@0 56 Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 57 new Object[] {"tagName","SOAPFactory.createElement"});
aoqi@0 58 throw new SOAPException("Null tagName argument passed to createElement");
aoqi@0 59 }
aoqi@0 60 return ElementFactory.createElement(createDocument(),
aoqi@0 61 NameImpl.createFromTagName(tagName));
aoqi@0 62 }
aoqi@0 63
aoqi@0 64 public SOAPElement createElement(Name name) throws SOAPException {
aoqi@0 65 // @since SAAJ 1.3
aoqi@0 66 // If the Name was null it would cause a NullPointerException in earlier release
aoqi@0 67 if (name == null) {
aoqi@0 68 log.log(Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 69 new Object[] {"name","SOAPFactory.createElement"});
aoqi@0 70 throw new SOAPException("Null name argument passed to createElement");
aoqi@0 71 }
aoqi@0 72 return ElementFactory.createElement(createDocument(), name);
aoqi@0 73 }
aoqi@0 74
aoqi@0 75 public SOAPElement createElement(QName qname) throws SOAPException {
aoqi@0 76 if (qname == null) {
aoqi@0 77 log.log(Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 78 new Object[] {"qname","SOAPFactory.createElement"});
aoqi@0 79 throw new SOAPException("Null qname argument passed to createElement");
aoqi@0 80 }
aoqi@0 81 return ElementFactory.createElement(createDocument(),qname);
aoqi@0 82 }
aoqi@0 83
aoqi@0 84 public SOAPElement createElement(
aoqi@0 85 String localName,
aoqi@0 86 String prefix,
aoqi@0 87 String uri) throws SOAPException {
aoqi@0 88
aoqi@0 89 // @since SAAJ 1.3
aoqi@0 90 // if prefix !=null but localName== null then in earlier releases it would create
aoqi@0 91 // a Qualified Name <prefix>:null which is not meaningful
aoqi@0 92 if (localName == null) {
aoqi@0 93 log.log(Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 94 new Object[] {"localName","SOAPFactory.createElement"});
aoqi@0 95 throw new SOAPException("Null localName argument passed to createElement");
aoqi@0 96 }
aoqi@0 97 return ElementFactory.createElement(createDocument(), localName, prefix, uri);
aoqi@0 98 }
aoqi@0 99
aoqi@0 100 public Name createName(String localName, String prefix, String uri)
aoqi@0 101 throws SOAPException {
aoqi@0 102 // @since SAAJ 1.3
aoqi@0 103 // if localName==null, earlier impl would create Name with localName=""
aoqi@0 104 // which is absurd.
aoqi@0 105 if (localName == null) {
aoqi@0 106 log.log(
aoqi@0 107 Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 108 new Object[] {"localName","SOAPFactory.createName"});
aoqi@0 109 throw new SOAPException("Null localName argument passed to createName");
aoqi@0 110 }
aoqi@0 111 return NameImpl.create(localName, prefix, uri);
aoqi@0 112 }
aoqi@0 113
aoqi@0 114 public Name createName(String localName) throws SOAPException {
aoqi@0 115 // @since SAAJ 1.3
aoqi@0 116 // if localName==null, earlier impl would create Name with localName=null
aoqi@0 117 // which is absurd.
aoqi@0 118 if (localName == null) {
aoqi@0 119 log.log(
aoqi@0 120 Level.SEVERE,"SAAJ0567.soap.null.input",
aoqi@0 121 new Object[] {"localName","SOAPFactory.createName"});
aoqi@0 122 throw new SOAPException("Null localName argument passed to createName");
aoqi@0 123 }
aoqi@0 124 return NameImpl.createFromUnqualifiedName(localName);
aoqi@0 125 }
aoqi@0 126
aoqi@0 127 // Note: the child elements might still be org.w3c.dom.Element's, but the
aoqi@0 128 // getChildElements will do the conversion to SOAPElement when called.
aoqi@0 129 public SOAPElement createElement(Element domElement) throws SOAPException {
aoqi@0 130 if (domElement == null) {
aoqi@0 131 return null;
aoqi@0 132 }
aoqi@0 133 return convertToSoapElement(domElement);
aoqi@0 134 }
aoqi@0 135
aoqi@0 136 private SOAPElement convertToSoapElement(Element element) throws SOAPException {
aoqi@0 137
aoqi@0 138 if (element instanceof SOAPElement) {
aoqi@0 139 return (SOAPElement) element;
aoqi@0 140 }
aoqi@0 141
aoqi@0 142 SOAPElement copy = createElement(
aoqi@0 143 element.getLocalName(),
aoqi@0 144 element.getPrefix(),
aoqi@0 145 element.getNamespaceURI());
aoqi@0 146
aoqi@0 147 Document ownerDoc = copy.getOwnerDocument();
aoqi@0 148
aoqi@0 149 NamedNodeMap attrMap = element.getAttributes();
aoqi@0 150 for (int i=0; i < attrMap.getLength(); i++) {
aoqi@0 151 Attr nextAttr = (Attr)attrMap.item(i);
aoqi@0 152 Attr importedAttr = (Attr)ownerDoc.importNode(nextAttr, true);
aoqi@0 153 copy.setAttributeNodeNS(importedAttr);
aoqi@0 154 }
aoqi@0 155
aoqi@0 156
aoqi@0 157 NodeList nl = element.getChildNodes();
aoqi@0 158 for (int i=0; i < nl.getLength(); i++) {
aoqi@0 159 org.w3c.dom.Node next = nl.item(i);
aoqi@0 160 org.w3c.dom.Node imported = ownerDoc.importNode(next, true);
aoqi@0 161 copy.appendChild(imported);
aoqi@0 162 }
aoqi@0 163
aoqi@0 164 return copy;
aoqi@0 165 }
aoqi@0 166
aoqi@0 167 public Detail createDetail() throws SOAPException {
aoqi@0 168 throw new UnsupportedOperationException();
aoqi@0 169 }
aoqi@0 170
aoqi@0 171 public SOAPFault createFault(String reasonText, QName faultCode) throws SOAPException {
aoqi@0 172 throw new UnsupportedOperationException();
aoqi@0 173 }
aoqi@0 174
aoqi@0 175 public SOAPFault createFault() throws SOAPException {
aoqi@0 176 throw new UnsupportedOperationException();
aoqi@0 177 }
aoqi@0 178
aoqi@0 179 }

mercurial