Spring Web Services Framework

org.springframework.ws.soap
Interface SoapFaultDetail

All Superinterfaces:
SoapElement

public interface SoapFaultDetail
extends SoapElement

Represents the detail element in a SOAP fault. A detail contains SoapFaultDetailElements, which represent the individual details.

Since:
1.0.0
Author:
Arjen Poutsma
See Also:
SoapFaultDetailElement

Method Summary
 SoapFaultDetailElement addFaultDetailElement(QName name)
          Adds a new SoapFaultDetailElement with the specified qualified name to this detail.
 Iterator getDetailEntries()
          Gets an iterator over all of the SoapFaultDetailElements in this detail.
 Result getResult()
          Returns a Result that represents the concents of the detail.
 
Methods inherited from interface org.springframework.ws.soap.SoapElement
addAttribute, addNamespaceDeclaration, getAllAttributes, getAttributeValue, getName, getSource, removeAttribute
 

Method Detail

addFaultDetailElement

SoapFaultDetailElement addFaultDetailElement(QName name)
Adds a new SoapFaultDetailElement with the specified qualified name to this detail.

Parameters:
name - the qualified name of the new detail element
Returns:
the created SoapFaultDetailElement

getResult

Result getResult()
Returns a Result that represents the concents of the detail.

The result can be used for marshalling.

Returns:
the Result of this element

getDetailEntries

Iterator getDetailEntries()
Gets an iterator over all of the SoapFaultDetailElements in this detail.

Returns:
an iterator over all the SoapFaultDetailElements
See Also:
SoapFaultDetailElement

Spring Web Services Framework

Copyright © 2005-2010 The Spring Web Services Framework. All Rights Reserved.