com.ibm.wsdl

Class MessageImpl

Implemented Interfaces:
AttributeExtensible, ElementExtensible, Message, java.io.Serializable, WSDLElement

public class MessageImpl
extends AbstractWSDLElement
implements Message

This class describes a message used for communication with an operation.
Authors:
Paul Fremantle
Nirmal Mukhi
Matthew J. Duftler

Field Summary

protected List
additionOrderOfParts
protected boolean
isUndefined
protected QName
name
protected List
nativeAttributeNames
protected Map
parts
static long
serialVersionUID

Fields inherited from class com.ibm.wsdl.AbstractWSDLElement

docEl, extElements, extensionAttributes

Fields inherited from interface javax.wsdl.extensions.AttributeExtensible

LIST_OF_QNAMES_TYPE, LIST_OF_STRINGS_TYPE, NO_DECLARED_TYPE, QNAME_TYPE, STRING_TYPE

Method Summary

void
addPart(Part part)
Add a part to this message.
List
getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.
List
getOrderedParts(List partOrder)
Get an ordered list of parts as specified by the partOrder argument.
Part
getPart(String name)
Get the specified part.
Map
getParts()
Get all the parts defined here.
QName
getQName()
Get the name of this message.
boolean
isUndefined()
Part
removePart(String name)
Remove the specified part.
void
setQName(QName name)
Set the name of this message.
void
setUndefined(boolean isUndefined)
String
toString()

Methods inherited from class com.ibm.wsdl.AbstractWSDLElement

addExtensibilityElement, getDocumentationElement, getExtensibilityElements, getExtensionAttribute, getExtensionAttributes, removeExtensibilityElement, setDocumentationElement, setExtensionAttribute, toString

Field Details

additionOrderOfParts

protected List additionOrderOfParts

isUndefined

protected boolean isUndefined

name

protected QName name

nativeAttributeNames

protected List nativeAttributeNames

parts

protected Map parts

serialVersionUID

public static final long serialVersionUID
Field Value:
1L

Method Details

addPart

public void addPart(Part part)
Add a part to this message.
Specified by:
addPart in interface Message
Parameters:
part - the part to be added

getNativeAttributeNames

public List getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.
Specified by:
getNativeAttributeNames in interface AttributeExtensible
Returns:
a List of Strings, one for each local attribute name

getOrderedParts

public List getOrderedParts(List partOrder)
Get an ordered list of parts as specified by the partOrder argument.
Specified by:
getOrderedParts in interface Message
Parameters:
partOrder - a list of strings, with each string referring to a part by its name. If this argument is null, the parts are returned in the order in which they were added to the message.
Returns:
the list of parts

getPart

public Part getPart(String name)
Get the specified part.
Specified by:
getPart in interface Message
Parameters:
name - the name of the desired part.
Returns:
the corresponding part, or null if there wasn't any matching part

getParts

public Map getParts()
Get all the parts defined here.
Specified by:
getParts in interface Message

getQName

public QName getQName()
Get the name of this message.
Specified by:
getQName in interface Message
Returns:
the message name

isUndefined

public boolean isUndefined()
Specified by:
isUndefined in interface Message

removePart

public Part removePart(String name)
Remove the specified part.
Specified by:
removePart in interface Message
Parameters:
name - the name of the part to be removed.
Returns:
the part which was removed

setQName

public void setQName(QName name)
Set the name of this message.
Specified by:
setQName in interface Message
Parameters:
name - the desired name

setUndefined

public void setUndefined(boolean isUndefined)
Specified by:
setUndefined in interface Message

toString

public String toString()
Overrides:
toString in interface AbstractWSDLElement

Copyright B) 2003,2006 IBM. All Rights Reserved.