Uses of Interface
org.apache.camel.Message

Packages that use Message
org.apache.camel The core Camel API 
org.apache.camel.builder.xml Support for XPath based Expressions and Predicates as well as an XSLT processor 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.component.jmx The JMX Component for monitoring JMX Attributes uisng a CounterMonitor. 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of Message in org.apache.camel
 

Methods in org.apache.camel that return Message
 Message Message.copy()
          Creates a copy of this message so that it can be used and possibly modified further in another exchange
 Message Exchange.getFault()
          Returns the fault message
 Message Exchange.getFault(boolean lazyCreate)
          Returns the fault message; optionally lazily creating one if one has not been associated with this exchange
 Message Exchange.getIn()
          Returns the inbound request message
 Message Exchange.getOut()
          Returns the outbound message, lazily creating one if one has not already been associated with this exchange.
 Message Exchange.getOut(boolean lazyCreate)
          Returns the outbound message; optionally lazily creating one if one has not been associated with this exchange
 

Methods in org.apache.camel with parameters of type Message
 void Message.copyFrom(Message message)
          Copies the contents of the other message into this message
 void Exchange.setIn(Message in)
          Sets the inbound message instance
 void Exchange.setOut(Message out)
          Sets the outbound message
 

Constructors in org.apache.camel with parameters of type Message
InvalidPayloadException(Exchange exchange, Class<?> type, Message message)
           
 

Uses of Message in org.apache.camel.builder.xml
 

Methods in org.apache.camel.builder.xml with parameters of type Message
 void DomResultHandler.setBody(Message in)
           
 void StringResultHandler.setBody(Message in)
           
 void StreamResultHandler.setBody(Message in)
           
 void ResultHandler.setBody(Message in)
           
 

Uses of Message in org.apache.camel.component.file
 

Classes in org.apache.camel.component.file that implement Message
 class FileMessage
          A Exchange for File
 

Methods in org.apache.camel.component.file with parameters of type Message
 void FileEndpoint.configureMessage(File file, Message message)
          Configures the given message with the file which sets the body to the file object and sets the FileComponent.HEADER_FILE_NAME header.
protected  File FileProducer.createFileName(Message message)
           
 

Uses of Message in org.apache.camel.component.jmx
 

Classes in org.apache.camel.component.jmx that implement Message
 class JMXMessage
          A Message for a JMX Notification
 

Uses of Message in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Message
 class DefaultMessage
          The default implementation of Message
 class MessageSupport
          A base class for implementation inheritence providing the core Message body handling features but letting the derived class deal with headers.
 

Methods in org.apache.camel.impl that return Message
 Message MessageSupport.copy()
           
protected  Message DefaultExchange.createFaultMessage()
          Factory method to lazily create the FAULT message
protected  Message DefaultExchange.createInMessage()
          Factory method used to lazily create the IN message
protected  Message DefaultExchange.createOutMessage()
          Factory method to lazily create the OUT message
 Message DefaultExchange.getFault()
           
 Message DefaultExchange.getFault(boolean lazyCreate)
           
 Message DefaultExchange.getIn()
           
 Message DefaultExchange.getOut()
           
 Message DefaultExchange.getOut(boolean lazyCreate)
           
abstract  Message MessageSupport.newInstance()
          Returns a new instance
 

Methods in org.apache.camel.impl with parameters of type Message
protected  void DefaultExchange.configureMessage(Message message)
          Configures the message after it has been set on the exchange
 void MessageSupport.copyFrom(Message that)
           
 void DefaultExchange.setFault(Message fault)
           
 void DefaultExchange.setIn(Message in)
           
 void DefaultExchange.setOut(Message out)
           
 



Copyright © 2008 IONA Open Source Community. All Rights Reserved.