blob: ad2fa7bed90ae341ca8335f502cb72f3c9d528e3 [file] [log] [blame]
/*
* Copyright (c) 1997, 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
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.message.source;
import com.sun.xml.internal.bind.api.Bridge;
import com.sun.xml.internal.ws.api.SOAPVersion;
import com.sun.xml.internal.ws.api.pipe.Codecs;
import com.sun.xml.internal.ws.api.pipe.StreamSOAPCodec;
import com.sun.xml.internal.ws.api.message.Message;
import com.sun.xml.internal.ws.api.message.MessageHeaders;
import com.sun.xml.internal.ws.api.message.Packet;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.streaming.SourceReaderFactory;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
import org.xml.sax.ContentHandler;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Source;
/**
* Implementation of {@link Message} backed by {@link Source} where the Source
* represents the complete message such as a SOAP envelope. It uses
* {@link StreamSOAPCodec} to create a {@link Message} and uses it as a
* delegate for all the methods.
*
* @author Vivek Pandey
* @author Jitendra Kotamraju
*/
public class ProtocolSourceMessage extends Message {
private final Message sm;
public ProtocolSourceMessage(Source source, SOAPVersion soapVersion) {
XMLStreamReader reader = SourceReaderFactory.createSourceReader(source, true);
com.sun.xml.internal.ws.api.pipe.StreamSOAPCodec codec = Codecs.createSOAPEnvelopeXmlCodec(soapVersion);
sm = codec.decode(reader);
}
public boolean hasHeaders() {
return sm.hasHeaders();
}
public String getPayloadLocalPart() {
return sm.getPayloadLocalPart();
}
public String getPayloadNamespaceURI() {
return sm.getPayloadNamespaceURI();
}
public boolean hasPayload() {
return sm.hasPayload();
}
public Source readPayloadAsSource() {
return sm.readPayloadAsSource();
}
public XMLStreamReader readPayload() throws XMLStreamException {
return sm.readPayload();
}
public void writePayloadTo(XMLStreamWriter sw) throws XMLStreamException {
sm.writePayloadTo(sw);
}
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
sm.writeTo(sw);
}
public Message copy() {
return sm.copy();
}
public Source readEnvelopeAsSource() {
return sm.readEnvelopeAsSource();
}
public SOAPMessage readAsSOAPMessage() throws SOAPException {
return sm.readAsSOAPMessage();
}
public SOAPMessage readAsSOAPMessage(Packet packet, boolean inbound) throws SOAPException {
return sm.readAsSOAPMessage(packet, inbound);
}
public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException {
return (T)sm.readPayloadAsJAXB(unmarshaller);
}
/** @deprecated */
public <T> T readPayloadAsJAXB(Bridge<T> bridge) throws JAXBException {
return sm.readPayloadAsJAXB(bridge);
}
public <T> T readPayloadAsJAXB(XMLBridge<T> bridge) throws JAXBException {
return sm.readPayloadAsJAXB(bridge);
}
public void writeTo(ContentHandler contentHandler, ErrorHandler errorHandler) throws SAXException {
sm.writeTo(contentHandler, errorHandler);
}
public SOAPVersion getSOAPVersion() {
return sm.getSOAPVersion();
}
@Override
public MessageHeaders getHeaders() {
return sm.getHeaders();
}
}