src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/StreamingSOAP.java

Print this page
rev 472 : 8036030: Update JAX-WS RI integration to latest version

*** 1,7 **** /* ! * Copyright (c) 2013, 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) 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
*** 23,32 **** --- 23,41 ---- * questions. */ package com.sun.xml.internal.ws.api.message; + import javax.xml.namespace.QName; + import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; + import javax.xml.stream.XMLStreamWriter; public interface StreamingSOAP { public XMLStreamReader readEnvelope(); + public QName getPayloadQName(); + public XMLStreamReader readToBodyStarTag() throws XMLStreamException; + public XMLStreamReader readPayload() throws XMLStreamException; + public void writeToBodyStart(XMLStreamWriter w) throws XMLStreamException; + public void writePayloadTo(XMLStreamWriter writer)throws XMLStreamException; + public boolean isPayloadStreamReader(); }