DBA Data[Home] [Help]

APPS.WF_EVENT_OJMSTEXT_QH dependencies on AQ$_JMS_TEXT_MESSAGE

Line 5: * SYS.AQ$_JMS_TEXT_MESSAGE datatype as their payload type.

1: package wf_event_ojmstext_qh AUTHID CURRENT_USER as
2: /* $Header: wfjmstxs.pls 120.4.12020000.4 2013/03/21 13:07:20 skandepu ship $ */
3: /*#
4: * Handles business event messages on queues that use the
5: * SYS.AQ$_JMS_TEXT_MESSAGE datatype as their payload type.
6: * @rep:scope public
7: * @rep:product WF
8: * @rep:displayname Workflow JMS Text Queue Handler
9: * @rep:lifecycle active

Line 79: p_jms_text_message out nocopy sys.aq$_jms_text_message);

75: * @rep:displayname Serialize Business Event
76: * @rep:compatibility S
77: */
78: procedure serialize(p_event in wf_event_t,
79: p_jms_text_message out nocopy sys.aq$_jms_text_message);
80:
81: --------------------------------------------------------------------------------
82: -- Tranforms a JMS Text Message into a business event.
83: --

Line 96: procedure deserialize(p_jms_text_message in out nocopy sys.aq$_jms_text_message,

92: * @rep:lifecycle active
93: * @rep:displayname Deserialize JMS Text Message
94: * @rep:compatibility S
95: */
96: procedure deserialize(p_jms_text_message in out nocopy sys.aq$_jms_text_message,
97: p_event out nocopy wf_event_t);
98:
99: end wf_event_ojmstext_qh;