1 package WF_ADVANCED_WORKLIST AUTHID CURRENT_USER as
2 /* $Header: wfadvws.pls 120.2.12010000.2 2009/10/29 10:50:26 sudchakr ship $ */
3
4 --
5 -- Authenticate (PUBLIC)
6 -- Verify user is allowed access to this notification
7 -- IN
8 -- nid - notification id
9 -- nkey - notification access key (if disconnected); currently unused
10 -- RETURNS
11 -- Current user name
12 --
13 function Authenticate(
14 username in varchar2,
15 nid in number,
16 nkey in varchar2)
17 return varchar2;
18
19 procedure getInfoAfterDenorm( p_nid in number,
20 p_langcode in varchar2,
21 p_subject out nocopy varchar2,
22 p_touser out nocopy varchar2,
23 p_fromuser out nocopy varchar2);
24
25 --
26 -- Authenticate2 (PUBLIC)
27 -- Verify if user allowed access to this notification. This API takes into
28 -- consideration if the user being authenticated is a proxy to the original
29 -- notification recipient
30 -- IN
31 -- nid - notification id
32 -- nkey - notification access key (if disconnected); currently unused
33 -- RETURNS
34 -- Current user name
35 --
36 function Authenticate2(username in varchar2,
37 nid in number,
38 nkey in varchar2)
39 return varchar2;
40
41 procedure SetNavFromHomePage(isebizhomepage in number);
42
43 function GetNavFromHomePage return Boolean;
44
45 end WF_ADVANCED_WORKLIST;