org.apache.ode.bpel.memdao
Class MessageDAOImpl

java.lang.Object
  extended by org.apache.ode.bpel.memdao.MessageDAOImpl
All Implemented Interfaces:
MessageDAO

public class MessageDAOImpl
extends java.lang.Object
implements MessageDAO


Constructor Summary
MessageDAOImpl()
           
 
Method Summary
 java.util.Date getCreateTime()
           
 org.w3c.dom.Element getData()
          Get the message data (content).
 org.w3c.dom.Element getHeader()
          Get the message header (content).
 javax.xml.namespace.QName getType()
          Get the message type (i.e.
 void setData(org.w3c.dom.Element value)
          Set the message data (content).
 void setHeader(org.w3c.dom.Element value)
          Set the message header (content).
 void setType(javax.xml.namespace.QName type)
          Set the message type (i.e.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MessageDAOImpl

public MessageDAOImpl()
Method Detail

setType

public void setType(javax.xml.namespace.QName type)
Description copied from interface: MessageDAO
Set the message type (i.e. the type).

Specified by:
setType in interface MessageDAO

getType

public javax.xml.namespace.QName getType()
Description copied from interface: MessageDAO
Get the message type (i.e. the type).

Specified by:
getType in interface MessageDAO

setData

public void setData(org.w3c.dom.Element value)
Description copied from interface: MessageDAO
Set the message data (content).

Specified by:
setData in interface MessageDAO

getData

public org.w3c.dom.Element getData()
Description copied from interface: MessageDAO
Get the message data (content).

Specified by:
getData in interface MessageDAO

setHeader

public void setHeader(org.w3c.dom.Element value)
Description copied from interface: MessageDAO
Set the message header (content).

Specified by:
setHeader in interface MessageDAO

getHeader

public org.w3c.dom.Element getHeader()
Description copied from interface: MessageDAO
Get the message header (content).

Specified by:
getHeader in interface MessageDAO

getCreateTime

public java.util.Date getCreateTime()