Red Hat Training

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

4.2.4. Message インターフェイス

各メッセージは org.jboss.soa.esb.message.Message インターフェイスの実装です。
        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;
}