This commit is contained in:
Arjen Poutsma
2007-09-21 12:26:17 +00:00
parent ec664693b8
commit b149eac47c

View File

@@ -44,17 +44,17 @@ public interface SoapFault extends SoapElement {
/** Sets the fault actor. For SOAP 1.1, this sets the actor. For SOAP 1.2, this sets the role. */
void setFaultActorOrRole(String faultActor);
/**
* Creates an optional <code>SoapFaultDetail</code> object and assigns it to this fault.
*
* @return the created detail
*/
SoapFaultDetail getFaultDetail();
/**
* Returns the optional detail element for this <code>SoapFault</code>.
*
* @return a fault detail
*/
SoapFaultDetail getFaultDetail();
/**
* Creates an optional <code>SoapFaultDetail</code> object and assigns it to this fault.
*
* @return the created detail
*/
SoapFaultDetail addFaultDetail();
}