Package org.apache.axis.soap
Interface SOAPConstants
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SOAP11Constants
,SOAP12Constants
An interface definining SOAP constants. This allows various parts of the
engine to avoid hardcoding dependence on a particular SOAP version and its
associated URIs, etc.
This might be fleshed out later to encapsulate factories for behavioral
objects which act differently depending on the SOAP version, but for now
it just supplies common namespaces + QNames.
- Author:
- Glen Daniels (gdaniels@apache.org), Andras Avar (andras.avar@nokia.com)
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SOAP11Constants
SOAP 1.1 constants - thread-safe and sharedstatic final SOAP12Constants
SOAP 1.2 constants - thread-safe and shared -
Method Summary
Modifier and TypeMethodDescriptionObtain the QName of the SOAP array typeObtain the href attribute nameObtain the item type name of an arrayObtain the QName for the Body elementObtain the MIME content typeObtain the encoding namespace for this version of SOAPObtain the envelope namespace for this version of SOAPObtain the QName for the Fault elementObtain the QName for the Header elementObtain the Qname of Mustunderstand fault codeObtain the "next" role/actor URIObtain the QName for the role attribute (actor/role)Obtain the Qname of VersionMismatch fault code
-
Field Details
-
SOAP11_CONSTANTS
SOAP 1.1 constants - thread-safe and shared -
SOAP12_CONSTANTS
SOAP 1.2 constants - thread-safe and shared
-
-
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 -
getFaultQName
QName getFaultQName()Obtain the QName for the Fault element -
getHeaderQName
QName getHeaderQName()Obtain the QName for the Header element -
getBodyQName
QName getBodyQName()Obtain the QName for the Body element -
getRoleAttributeQName
QName getRoleAttributeQName()Obtain the QName for the role attribute (actor/role) -
getContentType
String getContentType()Obtain the MIME content type -
getNextRoleURI
String getNextRoleURI()Obtain the "next" role/actor URI -
getAttrHref
String getAttrHref()Obtain the href attribute name -
getAttrItemType
String getAttrItemType()Obtain the item type name of an array -
getVerMismatchFaultCodeQName
QName getVerMismatchFaultCodeQName()Obtain the Qname of VersionMismatch fault code -
getMustunderstandFaultQName
QName getMustunderstandFaultQName()Obtain the Qname of Mustunderstand fault code -
getArrayType
QName getArrayType()Obtain the QName of the SOAP array type
-