Package org.apache.axis.soap
Interface SOAPConstants
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SOAP11Constants,SOAP12Constants
public interface SOAPConstants extends java.io.SerializableAn 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
Fields Modifier and Type Field Description static SOAP11ConstantsSOAP11_CONSTANTSSOAP 1.1 constants - thread-safe and sharedstatic SOAP12ConstantsSOAP12_CONSTANTSSOAP 1.2 constants - thread-safe and shared
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QNamegetArrayType()Obtain the QName of the SOAP array typejava.lang.StringgetAttrHref()Obtain the href attribute namejava.lang.StringgetAttrItemType()Obtain the item type name of an arrayQNamegetBodyQName()Obtain the QName for the Body elementjava.lang.StringgetContentType()Obtain the MIME content typejava.lang.StringgetEncodingURI()Obtain the encoding namespace for this version of SOAPjava.lang.StringgetEnvelopeURI()Obtain the envelope namespace for this version of SOAPQNamegetFaultQName()Obtain the QName for the Fault elementQNamegetHeaderQName()Obtain the QName for the Header elementQNamegetMustunderstandFaultQName()Obtain the Qname of Mustunderstand fault codejava.lang.StringgetNextRoleURI()Obtain the "next" role/actor URIQNamegetRoleAttributeQName()Obtain the QName for the role attribute (actor/role)QNamegetVerMismatchFaultCodeQName()Obtain the Qname of VersionMismatch fault code
-
-
-
Field Detail
-
SOAP11_CONSTANTS
static final SOAP11Constants SOAP11_CONSTANTS
SOAP 1.1 constants - thread-safe and shared
-
SOAP12_CONSTANTS
static final SOAP12Constants SOAP12_CONSTANTS
SOAP 1.2 constants - thread-safe and shared
-
-
Method Detail
-
getEnvelopeURI
java.lang.String getEnvelopeURI()
Obtain the envelope namespace for this version of SOAP
-
getEncodingURI
java.lang.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
java.lang.String getContentType()
Obtain the MIME content type
-
getNextRoleURI
java.lang.String getNextRoleURI()
Obtain the "next" role/actor URI
-
getAttrHref
java.lang.String getAttrHref()
Obtain the href attribute name
-
getAttrItemType
java.lang.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
-
-