DBA Data[Home] [Help]

PACKAGE BODY: APPS.FND_ICX_SEC

Source


1 package body FND_ICX_SEC as
2 /* $Header: aficxscb.pls 115.4 2002/06/20 19:14:12 dbowles ship $ */
3 
4 --- Check_Session function, returns the status of the ICX session id
5 --- passed to the function
6 function Check_Session (p_icx_session_id  in  varchar2,
7                         p_resp_id in varchar2 default null,
8                         p_app_resp_id in varchar2 default null) return varchar2 IS
9 
10 session_stat varchar2(30);
11 
12 BEGIN
13    session_stat := ICX_SEC.Check_Session(p_icx_session_id,
14                                          p_resp_id,
15                                          p_app_resp_id);
16    return session_stat;
17 END Check_Session;
18 
19 --- recreateURL returns the URL that is used to display an ICX
20 --- logon HTML page;
21 
22 function recreateURL (p_icx_session_id  in  varchar2,
23                       p_user_name       in  varchar2
24                       ) return varchar2 IS
25 
26 url  varchar2(255);
27 BEGIN
28    url := ICX_SEC.recreateURL(p_icx_session_id,
29                               p_user_name);
30    return url;
31 END recreateURL;
32 
33 end FND_ICX_SEC;