< prev index next >

jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/LazyEnvelope.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 36,61 **** public boolean isLazy(); public void writeTo(XMLStreamWriter writer) throws XMLStreamException, SOAPException; /** * Retrieve payload qname without materializing its contents ! * @return ! * @throws SOAPException */ public QName getPayloadQName() throws SOAPException; /** * Retrieve payload attribute value without materializing its contents ! * @param localName ! * @return ! * @throws SOAPException */ public String getPayloadAttributeValue(String localName) throws SOAPException; /** * Retrieve payload attribute value without materializing its contents ! * @param qName ! * @return ! * @throws SOAPException */ public String getPayloadAttributeValue(QName qName) throws SOAPException; } --- 36,61 ---- public boolean isLazy(); public void writeTo(XMLStreamWriter writer) throws XMLStreamException, SOAPException; /** * Retrieve payload qname without materializing its contents ! * @return QName ! * @throws SOAPException in case of an error */ public QName getPayloadQName() throws SOAPException; /** * Retrieve payload attribute value without materializing its contents ! * @param localName local name ! * @return payload attribute value ! * @throws SOAPException in case of an error */ public String getPayloadAttributeValue(String localName) throws SOAPException; /** * Retrieve payload attribute value without materializing its contents ! * @param qName QName ! * @return payload attribute value ! * @throws SOAPException in case of an error */ public String getPayloadAttributeValue(QName qName) throws SOAPException; }
< prev index next >