Red Hat Training

A Red Hat training course is available for JBoss Enterprise SOA Platform

4.2.4. Message Interface

Each message is an implementation of the org.jboss.soa.esb.message.Message interface:
        public interface Message
{
	public Header getHeader ();
	public Context getContext ();
	public Body getBody ();
	public Fault getFault ();
	public Attachment getAttachment ();
	public URI getType ();
	public Properties getProperties ();

	public Message copy () throws Exception;
}