com.ibm.wsdl
Class MessageImpl
java.lang.Object
|
+--com.ibm.wsdl.MessageImpl
- All Implemented Interfaces:
- Message, java.io.Serializable
- public class MessageImpl
- extends java.lang.Object
- implements Message
This class describes a message used for communication with an operation.
- Author:
- Paul Fremantle, Nirmal Mukhi, Matthew J. Duftler
- See Also:
- Serialized Form
Method Summary |
void |
addPart(Part part)
Add a part to this message. |
org.w3c.dom.Element |
getDocumentationElement()
Get the documentation element. |
java.util.List |
getOrderedParts(java.util.List partOrder)
Get an ordered list of parts as specified by the partOrder
argument. |
Part |
getPart(java.lang.String name)
Get the specified part. |
java.util.Map |
getParts()
Get all the parts defined here. |
javax.xml.namespace.QName |
getQName()
Get the name of this message. |
boolean |
isUndefined()
|
void |
setDocumentationElement(org.w3c.dom.Element docEl)
Set the documentation element for this document. |
void |
setQName(javax.xml.namespace.QName name)
Set the name of this message. |
void |
setUndefined(boolean isUndefined)
|
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
parts
protected java.util.Map parts
additionOrderOfParts
protected java.util.List additionOrderOfParts
name
protected javax.xml.namespace.QName name
docEl
protected org.w3c.dom.Element docEl
isUndefined
protected boolean isUndefined
MessageImpl
public MessageImpl()
setQName
public void setQName(javax.xml.namespace.QName name)
- Set the name of this message.
- Specified by:
setQName
in interface Message
- Parameters:
name
- the desired name
getQName
public javax.xml.namespace.QName getQName()
- Get the name of this message.
- Specified by:
getQName
in interface Message
- Returns:
- the message name
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
getPart
public Part getPart(java.lang.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 java.util.Map getParts()
- Get all the parts defined here.
- Specified by:
getParts
in interface Message
getOrderedParts
public java.util.List getOrderedParts(java.util.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
setDocumentationElement
public void setDocumentationElement(org.w3c.dom.Element docEl)
- Set the documentation element for this document. This dependency
on org.w3c.dom.Element should eventually be removed when a more
appropriate way of representing this information is employed.
- Specified by:
setDocumentationElement
in interface Message
- Parameters:
docEl
- the documentation element
getDocumentationElement
public org.w3c.dom.Element getDocumentationElement()
- Get the documentation element. This dependency on org.w3c.dom.Element
should eventually be removed when a more appropriate way of
representing this information is employed.
- Specified by:
getDocumentationElement
in interface Message
- Returns:
- the documentation element
setUndefined
public void setUndefined(boolean isUndefined)
- Specified by:
setUndefined
in interface Message
isUndefined
public boolean isUndefined()
- Specified by:
isUndefined
in interface Message
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
Copyright © 2001 IBM. All Rights Reserved.