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.
 
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
 

Constructor Detail

SOAPHeaderFault

public SOAPHeaderFault(QName faultcode,
                       java.lang.String faultstring,
                       java.lang.String faultactor)
Constructor for SOAPHeaderFault
Parameters:
faultcode - Qualified name of the faultcode
faultstring - The faultstring element of the SOAP fault
faultactor - faultactor element of the SOAP fault
Method Detail

getFaultCode

public QName getFaultCode()
Gets the faultcode element.
Returns:
Qualified name of the faultcode element

getFaultString

public java.lang.String getFaultString()
Gets the faultstring element.
Returns:
faultstring 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.