blob: 105ff31a0e14c00b983c100b7abc9d727de136a6 [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.axiom.soap.impl.llom;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMNode;
import org.apache.axiom.om.OMXMLParserWrapper;
import org.apache.axiom.om.impl.OMNodeEx;
import org.apache.axiom.om.impl.llom.OMDocumentImpl;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axiom.soap.SOAPMessage;
import org.apache.axiom.soap.SOAPProcessingException;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
public class SOAPMessageImpl extends OMDocumentImpl implements SOAPMessage {
public SOAPMessageImpl() {
}
public SOAPMessageImpl(SOAPEnvelope envelope, OMXMLParserWrapper parserWrapper) {
super(envelope, parserWrapper);
}
public SOAPMessageImpl(OMXMLParserWrapper parserWrapper) {
super(parserWrapper);
}
public SOAPEnvelope getSOAPEnvelope() throws SOAPProcessingException {
return (SOAPEnvelope) getOMDocumentElement();
}
public void setSOAPEnvelope(SOAPEnvelope envelope) throws SOAPProcessingException {
super.addChild(envelope);
this.documentElement = envelope;
}
public void setOMDocumentElement(OMElement rootElement) {
throw new UnsupportedOperationException("This is not allowed. Use set SOAPEnvelope instead");
}
public void setFirstChild(OMNode firstChild) {
throw new UnsupportedOperationException("This is not allowed. Use set SOAPEnvelope instead");
}
protected void internalSerialize(XMLStreamWriter writer, boolean cache, boolean includeXMLDeclaration) throws XMLStreamException {
if (cache) {
((OMNodeEx)this.documentElement).internalSerialize(writer);
} else {
((OMNodeEx)this.documentElement).internalSerializeAndConsume(writer);
}
}
}