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

Thu, 12 Jan 2017 00:25:07 +0300

author
aefimov
date
Thu, 12 Jan 2017 00:25:07 +0300
changeset 1460
c946a5cc042f
parent 1341
e5cc521294d8
child 1435
a90b319bae7a
permissions
-rw-r--r--

8159058: SAXParseException when sending soap message
Reviewed-by: lancea, coffeys

ohair@286 1 /*
aefimov@1341 2 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
ohair@286 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@286 4 *
ohair@286 5 * This code is free software; you can redistribute it and/or modify it
ohair@286 6 * under the terms of the GNU General Public License version 2 only, as
ohair@286 7 * published by the Free Software Foundation. Oracle designates this
ohair@286 8 * particular file as subject to the "Classpath" exception as provided
ohair@286 9 * by Oracle in the LICENSE file that accompanied this code.
ohair@286 10 *
ohair@286 11 * This code is distributed in the hope that it will be useful, but WITHOUT
ohair@286 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@286 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@286 14 * version 2 for more details (a copy is included in the LICENSE file that
ohair@286 15 * accompanied this code).
ohair@286 16 *
ohair@286 17 * You should have received a copy of the GNU General Public License version
ohair@286 18 * 2 along with this work; if not, write to the Free Software Foundation,
ohair@286 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@286 20 *
ohair@286 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@286 22 * or visit www.oracle.com if you need additional information or have any
ohair@286 23 * questions.
ohair@286 24 */
ohair@286 25
ohair@286 26 package com.sun.xml.internal.messaging.saaj.soap.impl;
ohair@286 27
ohair@286 28 import java.util.Iterator;
ohair@286 29 import java.util.NoSuchElementException;
ohair@286 30
ohair@286 31 import javax.xml.namespace.QName;
ohair@286 32 import javax.xml.soap.*;
ohair@286 33
ohair@286 34 import org.w3c.dom.Element;
ohair@286 35
ohair@286 36 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
ohair@286 37 import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
ohair@286 38
ohair@286 39 public abstract class DetailImpl extends FaultElementImpl implements Detail {
ohair@286 40 public DetailImpl(SOAPDocumentImpl ownerDoc, NameImpl detailName) {
ohair@286 41 super(ownerDoc, detailName);
ohair@286 42 }
ohair@286 43
ohair@286 44 protected abstract DetailEntry createDetailEntry(Name name);
ohair@286 45 protected abstract DetailEntry createDetailEntry(QName name);
ohair@286 46
ohair@286 47 public DetailEntry addDetailEntry(Name name) throws SOAPException {
ohair@286 48 DetailEntry entry = createDetailEntry(name);
ohair@286 49 addNode(entry);
aefimov@1341 50 return entry;
ohair@286 51 }
ohair@286 52
ohair@286 53 public DetailEntry addDetailEntry(QName qname) throws SOAPException {
ohair@286 54 DetailEntry entry = createDetailEntry(qname);
ohair@286 55 addNode(entry);
aefimov@1341 56 return entry;
ohair@286 57 }
ohair@286 58
ohair@286 59 protected SOAPElement addElement(Name name) throws SOAPException {
ohair@286 60 return addDetailEntry(name);
ohair@286 61 }
ohair@286 62
ohair@286 63 protected SOAPElement addElement(QName name) throws SOAPException {
ohair@286 64 return addDetailEntry(name);
ohair@286 65 }
ohair@286 66
ohair@286 67 protected SOAPElement convertToSoapElement(Element element) {
ohair@286 68 if (element instanceof DetailEntry) {
ohair@286 69 return (SOAPElement) element;
ohair@286 70 } else {
ohair@286 71 DetailEntry detailEntry =
ohair@286 72 createDetailEntry(NameImpl.copyElementName(element));
ohair@286 73 return replaceElementWithSOAPElement(
ohair@286 74 element,
ohair@286 75 (ElementImpl) detailEntry);
ohair@286 76 }
ohair@286 77 }
ohair@286 78
ohair@286 79 public Iterator getDetailEntries() {
ohair@286 80 return new Iterator() {
ohair@286 81 Iterator eachNode = getChildElementNodes();
ohair@286 82 SOAPElement next = null;
ohair@286 83 SOAPElement last = null;
ohair@286 84
ohair@286 85 public boolean hasNext() {
ohair@286 86 if (next == null) {
ohair@286 87 while (eachNode.hasNext()) {
ohair@286 88 next = (SOAPElement) eachNode.next();
ohair@286 89 if (next instanceof DetailEntry) {
ohair@286 90 break;
ohair@286 91 }
ohair@286 92 next = null;
ohair@286 93 }
ohair@286 94 }
ohair@286 95 return next != null;
ohair@286 96 }
ohair@286 97
ohair@286 98 public Object next() {
ohair@286 99 if (!hasNext()) {
ohair@286 100 throw new NoSuchElementException();
ohair@286 101 }
ohair@286 102 last = next;
ohair@286 103 next = null;
ohair@286 104 return last;
ohair@286 105 }
ohair@286 106
ohair@286 107 public void remove() {
ohair@286 108 if (last == null) {
ohair@286 109 throw new IllegalStateException();
ohair@286 110 }
ohair@286 111 SOAPElement target = last;
ohair@286 112 removeChild(target);
ohair@286 113 last = null;
ohair@286 114 }
ohair@286 115 };
ohair@286 116 }
ohair@286 117
ohair@286 118 protected boolean isStandardFaultElement() {
ohair@286 119 return true;
ohair@286 120 }
ohair@286 121
ohair@286 122 }

mercurial