Package org.apache.axiom.soap
Interface SOAPVersion
- All Known Implementing Classes:
SOAP11Version
,SOAP12Version
public interface SOAPVersion
A generic way to get at SOAP-version-specific values. As long as we can get
one of these from a SOAP element, we can get at the right
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionObtain the encoding namespace for this version of SOAPObtain the envelope namespace for this version of SOAPObtain the QName for the fault code element.Obtain the QName for the fault detail element.Obtain the QName for the fault reason element.Obtain the QName for the fault role/actor element.Obtain the media type for this version of SOAP.Obtain the QName for the MustUnderstand fault codeObtain the "next" role/actor URIObtain the QName for the Receiver fault code.Obtain the QName for the role attribute (actor/role)Obtain the QName for the Sender fault code
-
Field Details
-
SOAP11
-
SOAP12
-
-
Method Details
-
getEnvelopeURI
String getEnvelopeURI()Obtain the envelope namespace for this version of SOAP -
getEncodingURI
String getEncodingURI()Obtain the encoding namespace for this version of SOAP -
getRoleAttributeQName
QName getRoleAttributeQName()Obtain the QName for the role attribute (actor/role) -
getNextRoleURI
String getNextRoleURI()Obtain the "next" role/actor URI -
getMustUnderstandFaultCode
QName getMustUnderstandFaultCode()Obtain the QName for the MustUnderstand fault code -
getSenderFaultCode
QName getSenderFaultCode()Obtain the QName for the Sender fault code- Returns:
- Sender fault code as a QName
-
getReceiverFaultCode
QName getReceiverFaultCode()Obtain the QName for the Receiver fault code.- Returns:
- Receiver fault code as a QName
-
getFaultReasonQName
QName getFaultReasonQName()Obtain the QName for the fault reason element.- Returns:
- the QName for the fault reason element
-
getFaultCodeQName
QName getFaultCodeQName()Obtain the QName for the fault code element.- Returns:
- the QName for the fault code element
-
getFaultDetailQName
QName getFaultDetailQName()Obtain the QName for the fault detail element.- Returns:
- the QName for the fault detail element
-
getFaultRoleQName
QName getFaultRoleQName()Obtain the QName for the fault role/actor element.- Returns:
- the QName for the fault role/actor element
-
getMediaType
MediaType getMediaType()Obtain the media type for this version of SOAP.- Returns:
- the media type
-