javax.xml.rpc.soap
Class SOAPHeaderFault
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--javax.xml.rpc.soap.SOAPHeaderFault
- All Implemented Interfaces:
- java.io.Serializable
- public class SOAPHeaderFault
- extends java.lang.RuntimeException
The class javax.xml.rpc.soap.SOAPHeaderFault represents the
mapping of SOAP Header fault as specified in soap:header element
in the SOAP binding.
- See Also:
- Serialized Form
Constructor Summary |
SOAPHeaderFault(QName faultcode,
java.lang.String faultstring,
java.lang.String faultactor)
Constructor for SOAPHeaderFault |
Method Summary |
java.lang.String |
getFaultActor()
Gets the faultactor element. |
QName |
getFaultCode()
Gets the faultcode element. |
java.lang.String |
getFaultString()
Gets the faultstring element. |
void |
setFaultActor(java.lang.String faultactor)
Sets the faultactor element. |
void |
setFaultCode(QName faultcode)
Sets the faultcode that provides an algorithmic mechanism
for the identification of a SOAP fault. |
void |
setFaultString(java.lang.String faultstring)
Sets the faultstring element. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
SOAPHeaderFault
public SOAPHeaderFault(QName faultcode,
java.lang.String faultstring,
java.lang.String faultactor)
- Constructor for SOAPHeaderFault
- Parameters:
faultcode
- Qualified name of the faultcodefaultstring
- The faultstring element of the SOAP faultfaultactor
- faultactor element of the SOAP fault
setFaultCode
public void setFaultCode(QName faultcode)
- Sets the faultcode that provides an algorithmic mechanism
for the identification of a SOAP fault.
- Parameters:
faultcode
- Qualified name of the faultcode
getFaultCode
public QName getFaultCode()
- Gets the faultcode element.
- Returns:
- Qualified name of the faultcode element
setFaultString
public void setFaultString(java.lang.String faultstring)
- Sets the faultstring element.
- Parameters:
faultstring
- The faultstring element of the SOAP fault
getFaultString
public java.lang.String getFaultString()
- Gets the faultstring element.
- Returns:
- faultstring element of the SOAP fault
setFaultActor
public void setFaultActor(java.lang.String faultactor)
- Sets the faultactor element.
- Parameters:
faultactor
- element of the SOAP fault
getFaultActor
public java.lang.String getFaultActor()
- Gets the faultactor element.
- Returns:
- faultactor element of the SOAP fault
Copyright © 2001 Apache XML Project. All Rights Reserved.