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:
  • Method Details

    • 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<SoapFaultDetailElement> getDetailEntries()
      Gets an iterator over all of the SoapFaultDetailElements in this detail.
      Returns:
      an iterator over all the SoapFaultDetailElements
      See Also: