DBA Data[Home] [Help]

PACKAGE: APPS.FND_PROXY_UTIL

Source


1 PACKAGE fnd_proxy_util AUTHID CURRENT_USER AS
2 /* $Header: AFPRXUTS.pls 120.1 2005/07/02 04:14:01 appldev noship $ */
3 
4  -- GET the Web Proxy Username
5 
6  FUNCTION get_web_proxy_username RETURN VARCHAR2;
7 
8  -- GET the Web Proxy Password
9 
10  FUNCTION get_web_proxy_pw RETURN VARCHAR2;
11 
12 
13  -- PUT the Web Proxy Username
14 
15  PROCEDURE put_web_proxy_username(p_val IN VARCHAR2);
16 
17  -- PUT the Web Proxy Password
18 
19  PROCEDURE put_web_proxy_pw(p_val IN VARCHAR2);
20 
21 
22  -- DELete the Web Proxy Username
23 
24  PROCEDURE del_web_proxy_username;
25 
26  -- DELete the Web Proxy Password
27 
28  PROCEDURE del_web_proxy_pw;
29 
30 END;