Updated JavaDoc.

This commit is contained in:
Mark Fisher
2007-11-19 23:02:29 +00:00
parent 97a6e80d4f
commit 89d6e43763
3 changed files with 12 additions and 0 deletions

View File

@@ -17,6 +17,9 @@
package org.springframework.eai.message;
/**
* A simple Message implementation that encapsulates
* a single Object as its payload.
*
* @author Mark Fisher
*/
public class DocumentMessage implements Message {

View File

@@ -17,6 +17,8 @@
package org.springframework.eai.message;
/**
* The central interface that any Message type must implement.
*
* @author Mark Fisher
*/
public interface Message {

View File

@@ -21,6 +21,13 @@ import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
/**
* A holder for Message metadata. This includes information
* that is used by the messaging system (such as <i>id</i>
* and <i>correlationId</i>) as well as information that
* is relevant for specific messaging endpoints. For the
* latter, String values may be stored as <i>properties</i>
* and Object values may be stored as <i>attributes</i>.
*
* @author Mark Fisher
*/
public class MessageHeader {