Package org.springframework.ws.soap
Interface SoapVersion
public interface SoapVersion
Interface that defines a specific version of the SOAP specification. Contains properties for elements that make up a
soap envelope.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final SoapVersion
Represents version 1.1 of the SOAP specification.static final SoapVersion
Represents version 1.2 of the SOAP specification. -
Method Summary
Modifier and TypeMethodDescriptionReturns the qualified name of the SOAPactor
/role
attribute.Returns the qualified name for a SOAP body.Returns the qualified name of the Sender/Client SOAP Fault value.Returns theContent-Type
MIME header for a SOAP message.Returns the qualified name for a SOAP envelope.Returns the namespace URI for the SOAP envelope namespace.Returns the qualified name for a SOAP fault.Returns the qualified name for a SOAP header.Returns the qualified name of the SOAPMustUnderstand
attribute.Returns the qualified name of theMustUnderstand
SOAP Fault value.Returns the URI indicating that a header element is intended for the next SOAP application that processes the message.Returns the URI indicating that a header element should never be directly processed.Returns the qualified name of the Receiver/Server SOAP Fault value.Returns the URI indicating that a header element should only be processed by nodes acting as the ultimate receiver of a message.Returns the qualified name of theVersionMismatch
SOAP Fault value.
-
Field Details
-
SOAP_11
Represents version 1.1 of the SOAP specification.- See Also:
-
SOAP_12
Represents version 1.2 of the SOAP specification.- See Also:
-
-
Method Details
-
getBodyName
QName getBodyName()Returns the qualified name for a SOAP body. -
getContentType
String getContentType()Returns theContent-Type
MIME header for a SOAP message. -
getEnvelopeName
QName getEnvelopeName()Returns the qualified name for a SOAP envelope. -
getEnvelopeNamespaceUri
String getEnvelopeNamespaceUri()Returns the namespace URI for the SOAP envelope namespace. -
getFaultName
QName getFaultName()Returns the qualified name for a SOAP fault. -
getHeaderName
QName getHeaderName()Returns the qualified name for a SOAP header. -
getMustUnderstandAttributeName
QName getMustUnderstandAttributeName()Returns the qualified name of the SOAPMustUnderstand
attribute. -
getNextActorOrRoleUri
String getNextActorOrRoleUri()Returns the URI indicating that a header element is intended for the next SOAP application that processes the message. -
getNoneActorOrRoleUri
String getNoneActorOrRoleUri()Returns the URI indicating that a header element should never be directly processed. -
getMustUnderstandFaultName
QName getMustUnderstandFaultName()Returns the qualified name of theMustUnderstand
SOAP Fault value. -
getServerOrReceiverFaultName
QName getServerOrReceiverFaultName()Returns the qualified name of the Receiver/Server SOAP Fault value. -
getVersionMismatchFaultName
QName getVersionMismatchFaultName()Returns the qualified name of theVersionMismatch
SOAP Fault value. -
getActorOrRoleName
QName getActorOrRoleName()Returns the qualified name of the SOAPactor
/role
attribute. -
getClientOrSenderFaultName
QName getClientOrSenderFaultName()Returns the qualified name of the Sender/Client SOAP Fault value. -
getUltimateReceiverRoleUri
String getUltimateReceiverRoleUri()Returns the URI indicating that a header element should only be processed by nodes acting as the ultimate receiver of a message.
-