Uses of Class
org.sape.smfw.message.Message

Packages that use Message
org.sape.smfw.message   
org.sape.smfw.messagingengine   
org.sape.smfw.soapengine   
 

Uses of Message in org.sape.smfw.message
 

Subclasses of Message in org.sape.smfw.message
 class CompositeMessage
          A message consisting of child messages.
 class VoidMessage
          An empty message.
 

Fields in org.sape.smfw.message declared as Message
protected  Message Message.parent
          Reference to my parent
 

Methods in org.sape.smfw.message that return Message
 Message Message.getParent()
          Returns the parent.
 

Methods in org.sape.smfw.message with parameters of type Message
 void Message.setParent(Message parent)
          Sets the parent.
 void Message.addChild(Message message)
          Adds the supplied message as a child of this message.
 void CompositeMessage.addChild(Message message)
           
 

Uses of Message in org.sape.smfw.messagingengine
 

Methods in org.sape.smfw.messagingengine that return Message
 Message MessageReader.readMessage(Reader reader)
          Reads a Message from the supplied reader.
 Message MessageHandler.handleMessage(MessageContext messageContext, Message message)
          Handles the supplied message and returns the response message.
 Message CompositeMessageHandler.handleMessage(MessageContext messageContext, Message message)
          Creates a MessageHandler for each child message and calls its handleMessage() method.
 

Methods in org.sape.smfw.messagingengine with parameters of type Message
 void MessageWriter.writeMessage(Writer writer, Message message)
          Writes a message to the supplied writer.
 MessageHandler MessageHandlerFactory.createMessageHandler(Message message)
          Creates a MessageHandler for the supplied message
 Message MessageHandler.handleMessage(MessageContext messageContext, Message message)
          Handles the supplied message and returns the response message.
 MessageHandler MessageContext.createMessageHandler(Message message)
          Convenience method to create a MessageHandler for the supplied message.
 Message CompositeMessageHandler.handleMessage(MessageContext messageContext, Message message)
          Creates a MessageHandler for each child message and calls its handleMessage() method.
 

Uses of Message in org.sape.smfw.soapengine
 

Methods in org.sape.smfw.soapengine that return Message
static Message Translator.elementToMessage(MessageReader messageReader, org.apache.axis.message.SOAPBodyElement element)
          Converts a SOAPBodyElement to a Message
static Message Translator.elementsToMessage(MessageReader messageReader, Vector elements)
          Converts a one element Vector of SOAPBodyElements to a Message
 Message MessageClient.sendMessage(Message message)
          Sends a message to a Web service and returns the response.
 

Methods in org.sape.smfw.soapengine with parameters of type Message
static org.apache.axis.message.SOAPBodyElement Translator.messageToElement(MessageWriter messageWriter, Message message)
          Converts a Message to a SOAPBodyElement.
static org.apache.axis.message.SOAPBodyElement[] Translator.messageToElements(MessageWriter messageWriter, Message message)
          Converts a Message to a one element SOAPBodyElement[].
 Message MessageClient.sendMessage(Message message)
          Sends a message to a Web service and returns the response.
 



Copyright 2003 Sapient Corporation. All Rights Reserved.