Methods Summary |
---|
public javax.xml.soap.Detail | addDetail()Creates an optional Detail object and sets it as the
Detail object for this SOAPFault
object.
It is illegal to add a detail when the fault already
contains a detail. Therefore, this method should be called
only after the existing detail has been removed.
|
public void | addFaultReasonText(java.lang.String text, java.util.Locale locale)Appends or replaces a Reason Text item containing the specified
text message and an xml:lang derived from
locale . If a Reason Text item with this
xml:lang already exists its text value will be replaced
with text .
The locale parameter should not be null
Code sample:
SOAPFault fault = ...;
fault.addFaultReasonText("Version Mismatch", Locale.ENGLISH);
|
public void | appendFaultSubcode(javax.xml.namespace.QName subcode)Adds a Subcode to the end of the sequence of Subcodes contained by this
SOAPFault . Subcodes, which were introduced in SOAP 1.2, are
represented by a recursive sequence of subelements rooted in the
mandatory Code subelement of a SOAP Fault.
|
public javax.xml.soap.Detail | getDetail()Returns the optional detail element for this SOAPFault
object.
A Detail object carries application-specific error
information, the scope of the error information is restricted to
faults in the SOAPBodyElement objects if this is a
SOAP 1.1 Fault.
|
public java.lang.String | getFaultActor()Gets the fault actor for this SOAPFault object.
If this SOAPFault supports SOAP 1.2 then this call is
equivalent to {@link #getFaultRole()}
|
public java.lang.String | getFaultCode()Gets the fault code for this SOAPFault object.
|
public javax.xml.soap.Name | getFaultCodeAsName()Gets the mandatory SOAP 1.1 fault code for this
SOAPFault object as a SAAJ Name object.
The SOAP 1.1 specification requires the value of the "faultcode"
element to be of type QName. This method returns the content of the
element as a QName in the form of a SAAJ Name object. This method
should be used instead of the getFaultCode method since
it allows applications to easily access the namespace name without
additional parsing.
|
public javax.xml.namespace.QName | getFaultCodeAsQName()Gets the fault code for this
SOAPFault object as a QName object.
|
public java.lang.String | getFaultNode()Returns the optional Node element value for this
SOAPFault object. The Node element is
optional in SOAP 1.2.
|
public java.util.Iterator | getFaultReasonLocales()Returns an Iterator over a distinct sequence of
Locale s for which there are associated Reason Text items.
Any of these Locale s can be used in a call to
getFaultReasonText in order to obtain a localized version
of the Reason Text string.
|
public java.lang.String | getFaultReasonText(java.util.Locale locale)Returns the Reason Text associated with the given Locale .
If more than one such Reason Text exists the first matching Text is
returned
|
public java.util.Iterator | getFaultReasonTexts()Returns an Iterator over a sequence of
String objects containing all of the Reason Text items for
this SOAPFault .
|
public java.lang.String | getFaultRole()Returns the optional Role element value for this
SOAPFault object. The Role element is
optional in SOAP 1.2.
|
public java.lang.String | getFaultString()Gets the fault string for this SOAPFault object.
If this
SOAPFault is part of a message that supports SOAP 1.2 then
this call is equivalent to:
String reason = null;
try {
reason = (String) getFaultReasonTexts().next();
} catch (SOAPException e) {}
return reason;
|
public java.util.Locale | getFaultStringLocale()Gets the locale of the fault string for this SOAPFault
object.
If this
SOAPFault is part of a message that supports SOAP 1.2 then
this call is equivalent to:
Locale locale = null;
try {
locale = (Locale) getFaultReasonLocales().next();
} catch (SOAPException e) {}
return locale;
|
public java.util.Iterator | getFaultSubcodes()Gets the Subcodes for this SOAPFault as an iterator over
QNames .
|
public boolean | hasDetail()Returns true if this SOAPFault has a Detail
subelement and false otherwise. Equivalent to
(getDetail()!=null) .
|
public void | removeAllFaultSubcodes()Removes any Subcodes that may be contained by this
SOAPFault . Subsequent calls to
getFaultSubcodes will return an empty iterator until a call
to appendFaultSubcode is made.
|
public void | setFaultActor(java.lang.String faultActor)Sets this SOAPFault object with the given fault actor.
The fault actor is the recipient in the message path who caused the
fault to happen.
If this SOAPFault supports SOAP 1.2 then this call is
equivalent to {@link #setFaultRole(String)}
|
public void | setFaultCode(javax.xml.soap.Name faultCodeQName)Sets this SOAPFault object with the given fault code.
Fault codes, which give information about the fault, are defined
in the SOAP 1.1 specification. A fault code is mandatory and must
be of type Name . This method provides a convenient
way to set a fault code. For example,
SOAPEnvelope se = ...;
// Create a qualified name in the SOAP namespace with a localName
// of "Client". Note that prefix parameter is optional and is null
// here which causes the implementation to use an appropriate prefix.
Name qname = se.createName("Client", null,
SOAPConstants.URI_NS_SOAP_ENVELOPE);
SOAPFault fault = ...;
fault.setFaultCode(qname);
It is preferable to use this method over {@link #setFaultCode(String)}.
|
public void | setFaultCode(javax.xml.namespace.QName faultCodeQName)Sets this SOAPFault object with the given fault code.
It is preferable to use this method over {@link #setFaultCode(Name)}.
|
public void | setFaultCode(java.lang.String faultCode)Sets this SOAPFault object with the give fault code.
Fault codes, which given information about the fault, are defined in
the SOAP 1.1 specification. This element is mandatory in SOAP 1.1.
Because the fault code is required to be a QName it is preferable to
use the {@link #setFaultCode(Name)} form of this method.
|
public void | setFaultNode(java.lang.String uri)Creates or replaces any existing Node element value for
this SOAPFault object. The Node element
is optional in SOAP 1.2.
|
public void | setFaultRole(java.lang.String uri)Creates or replaces any existing Role element value for
this SOAPFault object. The Role element
is optional in SOAP 1.2.
|
public void | setFaultString(java.lang.String faultString)Sets the fault string for this SOAPFault object
to the given string.
If this
SOAPFault is part of a message that supports SOAP 1.2 then
this call is equivalent to:
addFaultReasonText(faultString, Locale.getDefault());
|
public void | setFaultString(java.lang.String faultString, java.util.Locale locale)Sets the fault string for this SOAPFault object
to the given string and localized to the given locale.
If this
SOAPFault is part of a message that supports SOAP 1.2 then
this call is equivalent to:
addFaultReasonText(faultString, locale);
|