Searched defs:ldapUtil (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam-v13/openam-authentication/openam-auth-application/src/main/java/com/sun/identity/authentication/modules/application/
H A DApplication.java93 private LDAPAuthUtils ldapUtil; field in class:Application
231 userTokenId = ldapUtil.getUserId();
318 ldapUtil = new LDAPAuthUtils(Collections.singleton(AuthD.directoryHostName + ":" + AuthD.directoryPort),
322 ldapUtil.authenticateUser(userName, userPassword);
323 if (ldapUtil.getState() == ModuleState.SUCCESS) {
327 setFailureID(ldapUtil.getUserId(userName));
333 ldapUtil.authenticateUser(userName, userPassword);
341 return ldapUtil.getState();
349 String failureUserID = ldapUtil.getUserId();
453 ldapUtil
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java86 protected LDAPAuthUtils ldapUtil; field in class:LDAP
249 ldapUtil = new LDAPAuthUtils(primaryServers, secondaryServers, isSecure, bundle, baseDN, debug);
250 ldapUtil.setScope(searchScope);
251 ldapUtil.setFilter(searchFilter);
252 ldapUtil.setUserNamingAttribute(userNamingAttr);
253 ldapUtil.setUserSearchAttribute(userSearchAttrs);
254 ldapUtil.setAuthPassword(bindPassword);
255 ldapUtil.setAuthDN(bindDN);
256 ldapUtil.setReturnUserDN(returnUserDN);
257 ldapUtil
[all...]
/forgerock/openam/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java89 protected LDAPAuthUtils ldapUtil; field in class:LDAP
254 ldapUtil = new LDAPAuthUtils(primaryServers, secondaryServers, isSecure, bundle, baseDN, debug);
255 ldapUtil.setScope(searchScope);
256 ldapUtil.setFilter(searchFilter);
257 ldapUtil.setUserNamingAttribute(userNamingAttr);
258 ldapUtil.setUserSearchAttribute(userSearchAttrs);
259 ldapUtil.setAuthPassword(bindPassword);
260 ldapUtil.setAuthDN(bindDN);
261 ldapUtil.setReturnUserDN(returnUserDN);
262 ldapUtil
[all...]

Completed in 29 milliseconds