Package org.springframework.ws.soap
Interface SoapFaultDetail
- All Superinterfaces:
SoapElement
Represents the
detail
element in a SOAP fault. A detail contains SoapFaultDetailElement
s, which
represent the individual details.- Since:
- 1.0.0
- Author:
- Arjen Poutsma
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionaddFaultDetailElement
(QName name) Adds a newSoapFaultDetailElement
with the specified qualified name to this detail.Gets an iterator over all of theSoapFaultDetailElement
s in this detail.Returns aResult
that represents the concents of the detail.Methods inherited from interface org.springframework.ws.soap.SoapElement
addAttribute, addNamespaceDeclaration, getAllAttributes, getAttributeValue, getName, getSource, removeAttribute
-
Method Details
-
addFaultDetailElement
Adds a newSoapFaultDetailElement
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 aResult
that represents the concents of the detail.The result can be used for marshalling.
- Returns:
- the
Result
of this element
-
getDetailEntries
Iterator<SoapFaultDetailElement> getDetailEntries()Gets an iterator over all of theSoapFaultDetailElement
s in this detail.- Returns:
- an iterator over all the
SoapFaultDetailElement
s - See Also:
-