Spring Web Services Framework

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.

Since:
1.0.0
Author:
Arjen Poutsma
See Also:
SOAP_11, SOAP_12

Field Summary
static SoapVersion SOAP_11
          Represents version 1.1 of the SOAP specification.
static SoapVersion SOAP_12
          Represents version 1.2 of the SOAP specification.
 
Method Summary
 QName getActorOrRoleName()
          Returns the qualified name of the SOAP actor/role attribute.
 QName getBodyName()
          Returns the qualified name for a SOAP body.
 QName getClientOrSenderFaultName()
          Returns the qualified name of the Sender/Client SOAP Fault value.
 String getContentType()
          Returns the Content-Type MIME header for a SOAP message.
 QName getEnvelopeName()
          Returns the qualified name for a SOAP envelope.
 String getEnvelopeNamespaceUri()
          Returns the namespace URI for the SOAP envelope namespace.
 QName getFaultName()
          Returns the qualified name for a SOAP fault.
 QName getHeaderName()
          Returns the qualified name for a SOAP header.
 QName getMustUnderstandAttributeName()
          Returns the qualified name of the SOAP MustUnderstand attribute.
 QName getMustUnderstandFaultName()
          Returns the qualified name of the MustUnderstand SOAP Fault value.
 String getNextActorOrRoleUri()
          Returns the URI indicating that a header element is intended for the next SOAP application that processes the message.
 String getNoneActorOrRoleUri()
          Returns the URI indicating that a header element should never be directly processed.
 QName getServerOrReceiverFaultName()
          Returns the qualified name of the Receiver/Server SOAP Fault value.
 String getUltimateReceiverRoleUri()
          Returns the URI indicating that a header element should only be processed by nodes acting as the ultimate receiver of a message.
 QName getVersionMismatchFaultName()
          Returns the qualified name of the VersionMismatch SOAP Fault value.
 

Field Detail

SOAP_11

static final SoapVersion SOAP_11
Represents version 1.1 of the SOAP specification.

See Also:
SOAP 1.1 specification

SOAP_12

static final SoapVersion SOAP_12
Represents version 1.2 of the SOAP specification.

See Also:
SOAP 1.2 specification
Method Detail

getBodyName

QName getBodyName()
Returns the qualified name for a SOAP body.


getContentType

String getContentType()
Returns the Content-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 SOAP MustUnderstand 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 the MustUnderstand 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 the VersionMismatch SOAP Fault value.


getActorOrRoleName

QName getActorOrRoleName()
Returns the qualified name of the SOAP actor/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.


Spring Web Services Framework

Copyright © 2005-2013 The Spring Web Services Framework. All Rights Reserved.