blob: f429a6e69f5e4fe5578501f446328a95fd7bf55f [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.ws.commons.soap.impl.llom;
import org.apache.ws.commons.om.OMElement;
import org.apache.ws.commons.om.OMXMLParserWrapper;
import org.apache.ws.commons.om.impl.OMNodeEx;
import org.apache.ws.commons.om.impl.llom.OMSerializerUtil;
import org.apache.ws.commons.om.impl.llom.serialize.StreamWriterToContentHandlerConverter;
import org.apache.ws.commons.om.util.ElementHelper;
import org.apache.ws.commons.soap.SOAP12Constants;
import org.apache.ws.commons.soap.SOAPFault;
import org.apache.ws.commons.soap.SOAPFaultReason;
import org.apache.ws.commons.soap.SOAPFaultText;
import org.apache.ws.commons.soap.SOAPProcessingException;
import javax.xml.stream.XMLStreamException;
public abstract class SOAPFaultReasonImpl extends SOAPElement implements SOAPFaultReason {
protected SOAPFaultText text;
/**
* Constructor OMElementImpl
*
* @param parent
* @param builder
*/
public SOAPFaultReasonImpl(SOAPFault parent, OMXMLParserWrapper builder) {
super(parent, SOAP12Constants.SOAP_FAULT_REASON_LOCAL_NAME, builder);
}
/**
* @param parent
*/
public SOAPFaultReasonImpl(OMElement parent,
boolean extractNamespaceFromParent) throws SOAPProcessingException {
super(parent,
SOAP12Constants.SOAP_FAULT_REASON_LOCAL_NAME,
extractNamespaceFromParent);
}
/**
* Eran Chinthaka (chinthaka@apache.org)
*/
public void setSOAPText(SOAPFaultText soapFaultText) throws SOAPProcessingException {
ElementHelper.setNewElement(this, text, soapFaultText);
}
public SOAPFaultText getSOAPText() {
return (SOAPFaultText) ElementHelper.getChildWithName(this,
SOAP12Constants.SOAP_FAULT_TEXT_LOCAL_NAME);
}
protected void serialize(org.apache.ws.commons.om.impl.OMOutputImpl omOutput, boolean cache) throws XMLStreamException {
// select the builder
short builderType = PULL_TYPE_BUILDER; // default is pull type
if (builder != null) {
builderType = this.builder.getBuilderType();
}
if ((builderType == PUSH_TYPE_BUILDER)
&& (builder.getRegisteredContentHandler() == null)) {
builder.registerExternalContentHandler(new StreamWriterToContentHandlerConverter(omOutput));
}
if (!cache) {
//No caching
if (this.firstChild != null) {
OMSerializerUtil.serializeStartpart(this, omOutput);
((OMNodeEx)firstChild).serializeAndConsume(omOutput);
OMSerializerUtil.serializeEndpart(omOutput);
} else if (!this.done) {
if (builderType == PULL_TYPE_BUILDER) {
OMSerializerUtil.serializeByPullStream(this, omOutput);
} else {
OMSerializerUtil.serializeStartpart(this, omOutput);
builder.setCache(cache);
builder.next();
OMSerializerUtil.serializeEndpart(omOutput);
}
} else {
OMSerializerUtil.serializeNormal(this, omOutput, cache);
}
// do not serialise the siblings
} else {
//Cached
OMSerializerUtil.serializeNormal(this, omOutput, cache);
// do not serialise the siblings
}
}
}