blob: f1fe461457c67a42cd5c4276fa84b1e5e97349db [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.soap12;
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.soap.SOAPBody;
import org.apache.ws.commons.soap.SOAPFault;
import org.apache.ws.commons.soap.SOAPFaultCode;
import org.apache.ws.commons.soap.SOAPFaultDetail;
import org.apache.ws.commons.soap.SOAPFaultNode;
import org.apache.ws.commons.soap.SOAPFaultReason;
import org.apache.ws.commons.soap.SOAPFaultRole;
import org.apache.ws.commons.soap.SOAPProcessingException;
import org.apache.ws.commons.soap.impl.llom.SOAPFaultImpl;
import javax.xml.stream.XMLStreamException;
public class SOAP12FaultImpl extends SOAPFaultImpl {
/**
* Eran Chinthaka (chinthaka@apache.org)
*/
public SOAP12FaultImpl(SOAPBody parent, Exception e) throws SOAPProcessingException {
super(parent, e);
}
public SOAP12FaultImpl(SOAPBody parent, OMXMLParserWrapper builder) {
super(parent, builder);
}
/**
* This is a convenience method for the SOAP Fault Impl.
*
* @param parent
*/
public SOAP12FaultImpl(SOAPBody parent) throws SOAPProcessingException {
super(parent);
}
protected SOAPFaultDetail getNewSOAPFaultDetail(SOAPFault fault) {
return new SOAP12FaultDetailImpl(fault);
}
public void setCode(SOAPFaultCode soapFaultCode) throws SOAPProcessingException {
if (!(soapFaultCode instanceof SOAP12FaultCodeImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Fault Code. But received some other implementation");
}
super.setCode(soapFaultCode);
}
public void setReason(SOAPFaultReason reason) throws SOAPProcessingException {
if (!(reason instanceof SOAP12FaultReasonImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Fault Reason. But received some other implementation");
}
super.setReason(reason);
}
public void setNode(SOAPFaultNode node) throws SOAPProcessingException {
if (!(node instanceof SOAP12FaultNodeImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Fault Node. But received some other implementation");
}
super.setNode(node);
}
public void setRole(SOAPFaultRole role) throws SOAPProcessingException {
if (!(role instanceof SOAP12FaultRoleImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Fault Role. But received some other implementation");
}
super.setRole(role);
}
public void setDetail(SOAPFaultDetail detail) throws SOAPProcessingException {
if (!(detail instanceof SOAP12FaultDetailImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Fault Detail. But received some other implementation");
}
super.setDetail(detail);
}
protected void checkParent(OMElement parent) throws SOAPProcessingException {
if (!(parent instanceof SOAP12BodyImpl)) {
throw new SOAPProcessingException(
"Expecting SOAP 1.2 implementation of SOAP Body as the parent. But received some other implementation");
}
}
protected void serializeFaultNode(org.apache.ws.commons.om.impl.OMOutputImpl omOutput) throws XMLStreamException {
SOAPFaultNode faultNode = getNode();
if (faultNode != null) {
((OMNodeEx)faultNode).serialize(omOutput);
}
}
}