DBA Data[Home] [Help]

APPS.FND_LDAP_UTIL dependencies on DBMS_LDAP

Line 32: type ldap_record_values is table of dbms_ldap.STRING_COLLECTION index by varchar2(200);

28: , orclGUID varchar2(4000)
29: );
30:
31:
32: type ldap_record_values is table of dbms_ldap.STRING_COLLECTION index by varchar2(200);
33:
34: type ldap_record_type is record (
35: dn varchar2(4000),
36: data ldap_record_values

Line 73: function get_oid_session return dbms_ldap.session;

69: ** Desc :
70: ** Pre-Reqs :
71: ** Parameters :
72: */
73: function get_oid_session return dbms_ldap.session;
74:
75: function c_get_oid_session(flag in out nocopy pls_integer) return dbms_ldap.session;
76: procedure c_unbind(ldap in out nocopy dbms_ldap.session , flag in out nocopy pls_integer);
77: --

Line 75: function c_get_oid_session(flag in out nocopy pls_integer) return dbms_ldap.session;

71: ** Parameters :
72: */
73: function get_oid_session return dbms_ldap.session;
74:
75: function c_get_oid_session(flag in out nocopy pls_integer) return dbms_ldap.session;
76: procedure c_unbind(ldap in out nocopy dbms_ldap.session , flag in out nocopy pls_integer);
77: --
78: -------------------------------------------------------------------------------
79: /*

Line 76: procedure c_unbind(ldap in out nocopy dbms_ldap.session , flag in out nocopy pls_integer);

72: */
73: function get_oid_session return dbms_ldap.session;
74:
75: function c_get_oid_session(flag in out nocopy pls_integer) return dbms_ldap.session;
76: procedure c_unbind(ldap in out nocopy dbms_ldap.session , flag in out nocopy pls_integer);
77: --
78: -------------------------------------------------------------------------------
79: /*
80: ** Name : unbind

Line 87: function unbind(p_session in out nocopy dbms_ldap.session) return pls_integer;

83: ** Pre-Reqs :
84: ** Parameters :
85: ** Notes :
86: */
87: function unbind(p_session in out nocopy dbms_ldap.session) return pls_integer;
88: --
89: -------------------------------------------------------------------------------
90: /*
91: ** Name : get_orclappname

Line 115: -- function get_users_nodes return dbms_ldap.string_collection;

111: ** get_user_search_base(username)
112:
113: **
114: */
115: -- function get_users_nodes return dbms_ldap.string_collection;
116:
117: -------------------------------------------------------------------------------
118: /*
119: ** Name : get_user_create_base

Line 153: -- function get_search_nodes return dbms_ldap.string_collection;

149: ** Pre-Reqs :
150: ** Parameters :
151: ** Notes : REMOVED , use get_User_create_base(username)/ get_user_search_base(username)
152: */
153: -- function get_search_nodes return dbms_ldap.string_collection;
154: --
155: -------------------------------------------------------------------------------
156: /*
157: ** Name : get_mandatory_user_attrib

Line 188: p_ldap_session in dbms_ldap.session) return varchar2;

184: ** Parameters : orcl_guid
185: ** Notes :
186: */
187: function get_dn_for_guid(p_orclguid in fnd_user.user_guid%type,
188: p_ldap_session in dbms_ldap.session) return varchar2;
189: --
190: -------------------------------------------------------------------------------
191: /*
192: ** Name : get_default_realm

Line 228: ** DATA_NOT_FOUND if search_s raise DBMS_LDAP.GENERAL_EXCEPTION

224: ** Returns :
225: ** Its orclguid
226: ** If it is NULL then the DN does not have a orcGuild attribute
227: ** Exceptions:
228: ** DATA_NOT_FOUND if search_s raise DBMS_LDAP.GENERAL_EXCEPTION
229: ** NOte that this DBMS_LDAP exception maybe risen by other reasons
230: **
231: */
232: function get_guid_for_dn(ldapSession in dbms_ldap.session,p_dn in varchar2) return varchar2;

Line 229: ** NOte that this DBMS_LDAP exception maybe risen by other reasons

225: ** Its orclguid
226: ** If it is NULL then the DN does not have a orcGuild attribute
227: ** Exceptions:
228: ** DATA_NOT_FOUND if search_s raise DBMS_LDAP.GENERAL_EXCEPTION
229: ** NOte that this DBMS_LDAP exception maybe risen by other reasons
230: **
231: */
232: function get_guid_for_dn(ldapSession in dbms_ldap.session,p_dn in varchar2) return varchar2;
233:

Line 232: function get_guid_for_dn(ldapSession in dbms_ldap.session,p_dn in varchar2) return varchar2;

228: ** DATA_NOT_FOUND if search_s raise DBMS_LDAP.GENERAL_EXCEPTION
229: ** NOte that this DBMS_LDAP exception maybe risen by other reasons
230: **
231: */
232: function get_guid_for_dn(ldapSession in dbms_ldap.session,p_dn in varchar2) return varchar2;
233:
234: --
235: -------------------------------------------------------------------------------
236: /*

Line 248: procedure proxy_as_user(p_orclguid in fnd_user.user_guid%type, x_ldap_session out nocopy dbms_ldap.session);

244: ** x_ldap_session: returns a valid OID session. Must be released bu caller of
245: ** the API
246: ** Notes :
247: */
248: procedure proxy_as_user(p_orclguid in fnd_user.user_guid%type, x_ldap_session out nocopy dbms_ldap.session);
249: --
250: -------------------------------------------------------------------------------
251:
252: /*

Line 284: procedure add_attribute_M(x_ldap in dbms_ldap.session, dn in varchar2, name in varchar2, value in varchar2 );

280: ** x_ldap_session: returns a valid OID session. Must be released bu caller of
281: ** the API
282: ** Notes :
283: */
284: procedure add_attribute_M(x_ldap in dbms_ldap.session, dn in varchar2, name in varchar2, value in varchar2 );
285: --
286: -------------------------------------------------------------------------------
287:
288:

Line 294: ldap in out nocopy dbms_ldap.session,

290: ** INTERNAL ATG-SSO
291: **/
292:
293: function getLDAPAttribute(
294: ldap in out nocopy dbms_ldap.session,
295: dn in varchar2,
296: attrName in varchar2,
297: filterExp in varchar2 default 'objectclass=*')
298: return varchar2;

Line 305: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_type,

301:
302: G_GUID_KEY pls_integer :=0;
303: G_DN_KEY pls_integer :=1;
304:
305: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_type,
306: key in varchar2, key_type in pls_integer default G_DN_KEY ) return boolean;
307:
308: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_values, dn out nocopy varchar2,
309: key in varchar2, key_type in pls_integer default G_DN_KEY ) return boolean;

Line 308: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_values, dn out nocopy varchar2,

304:
305: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_type,
306: key in varchar2, key_type in pls_integer default G_DN_KEY ) return boolean;
307:
308: function loadLdapRecord( ldapSession in out nocopy dbms_ldap.session, rec in out nocopy ldap_record_values, dn out nocopy varchar2,
309: key in varchar2, key_type in pls_integer default G_DN_KEY ) return boolean;
310:
311: end fnd_ldap_util;