Interface ISoapMessageDefinition
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SoapMessageDefinition
This interface defines a soap message.
- Since:
- 9.0
- Author:
- a.pragt
-
Method Details
-
getEntityName
String getEntityName()This method returns the definition of the entity of this message.- Returns:
- The entity definition, returns null when the definition is not provided.
-
getTargetNamespace
String getTargetNamespace()This method returns the targetnamespace of the message.- Returns:
- the target namespace, may be null.
-
getHeaderParts
ISoapMessagePartDefinition[] getHeaderParts()This method returns the header message parts of this message.- Returns:
- The header message parts, never null, be maybe an empty array.
-
getBodyParts
ISoapMessagePartDefinition[] getBodyParts()This method returns the body message parts of this message.- Returns:
- The body message parts, never null, be maybe an empty array.
-