jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/Body1_1Impl.java
changeset 43852 93a527059d8a
parent 28326 2b9860c0d68a
child 45678 65fdff10664d
equal deleted inserted replaced
43752:3c68ef249093 43852:93a527059d8a
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    36 
    36 
    37 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocument;
    37 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocument;
    38 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    38 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    39 import com.sun.xml.internal.messaging.saaj.soap.impl.BodyImpl;
    39 import com.sun.xml.internal.messaging.saaj.soap.impl.BodyImpl;
    40 import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
    40 import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
       
    41 import org.w3c.dom.Element;
    41 
    42 
    42 public class Body1_1Impl extends BodyImpl {
    43 public class Body1_1Impl extends BodyImpl {
    43     public Body1_1Impl(SOAPDocumentImpl ownerDocument, String prefix) {
    44     public Body1_1Impl(SOAPDocumentImpl ownerDocument, String prefix) {
    44             super(ownerDocument, NameImpl.createBody1_1Name(prefix));
    45             super(ownerDocument, NameImpl.createBody1_1Name(prefix));
       
    46     }
       
    47 
       
    48     public Body1_1Impl(SOAPDocumentImpl ownerDoc, Element domElement) {
       
    49         super(ownerDoc, domElement);
    45     }
    50     }
    46 
    51 
    47     public SOAPFault addSOAP12Fault(QName faultCode, String faultReason, Locale locale) {
    52     public SOAPFault addSOAP12Fault(QName faultCode, String faultReason, Locale locale) {
    48         // log message here
    53         // log message here
    49         throw new UnsupportedOperationException("Not supported in SOAP 1.1");
    54         throw new UnsupportedOperationException("Not supported in SOAP 1.1");