DBA Data[Home] [Help]

APPS.WF_BES_CACHE dependencies on WF_AGENT_OBJ

Line 56: -- This function returns an instance of WF_AGENT_OBJ that contains the

52: p_sub_guid in raw)
53: return wf_event_subs_obj;
54:
55: -- GetAgentByName
56: -- This function returns an instance of WF_AGENT_OBJ that contains the
57: -- information about the specified Agent name + System name
58: function GetAgentByName(p_agent_name in varchar2,
59: p_system_name in varchar2)
60: return wf_agent_obj;

Line 60: return wf_agent_obj;

56: -- This function returns an instance of WF_AGENT_OBJ that contains the
57: -- information about the specified Agent name + System name
58: function GetAgentByName(p_agent_name in varchar2,
59: p_system_name in varchar2)
60: return wf_agent_obj;
61:
62: -- GetAgentByGUID
63: -- This function returns an instance of WF_AGENT_OBJ that contains the
64: -- information about the specified Agent GUID

Line 63: -- This function returns an instance of WF_AGENT_OBJ that contains the

59: p_system_name in varchar2)
60: return wf_agent_obj;
61:
62: -- GetAgentByGUID
63: -- This function returns an instance of WF_AGENT_OBJ that contains the
64: -- information about the specified Agent GUID
65: function GetAgentByGUID(p_agent_guid in raw)
66: return wf_agent_obj;
67:

Line 66: return wf_agent_obj;

62: -- GetAgentByGUID
63: -- This function returns an instance of WF_AGENT_OBJ that contains the
64: -- information about the specified Agent GUID
65: function GetAgentByGUID(p_agent_guid in raw)
66: return wf_agent_obj;
67:
68: -- GetAgentByQH
69: -- This function returns an instance of WF_AGENT_OBJ that contains the
70: -- information about first agent that matches the specified Queue Handler

Line 69: -- This function returns an instance of WF_AGENT_OBJ that contains the

65: function GetAgentByGUID(p_agent_guid in raw)
66: return wf_agent_obj;
67:
68: -- GetAgentByQH
69: -- This function returns an instance of WF_AGENT_OBJ that contains the
70: -- information about first agent that matches the specified Queue Handler
71: function GetAgentByQH(p_agent_qh in varchar2,
72: p_direction in varchar2)
73: return wf_agent_obj;

Line 73: return wf_agent_obj;

69: -- This function returns an instance of WF_AGENT_OBJ that contains the
70: -- information about first agent that matches the specified Queue Handler
71: function GetAgentByQH(p_agent_qh in varchar2,
72: p_direction in varchar2)
73: return wf_agent_obj;
74:
75: -- GetSystemByName
76: -- This function returns an instance of WF_SYSTEM_OBJ that contains the
77: -- information about the specified System name.