Searched refs:ldapServer (Results 1 - 21 of 21) sorted by relevance

/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/connect/
H A DDSConnectValidation.java125 String ldapServer = null;
136 ldapServer = hostAndPort.substring(0, index);
144 ldapServer = hostAndPort;
154 doConnect(ldapServer, ldapPort, type, id, pwd);
172 String ldapServer,
178 try (Connection conn = getLDAPConnection(ldapServer, ldapPort, type, id, pwd)) {
171 doConnect( String ldapServer, int ldapPort, String type, String id, String pwd ) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DSubjectEvaluationCache.java125 * @param ldapServer ldap server having the entry corresponding to
132 String ldapServer,
138 String subjectId = ldapServer+":"+valueDN;
159 * @param ldapServer ldap server having the entry corresponding to
165 String ldapServer, String valueDN) {
171 String subjectId = ldapServer+":"+valueDN;
130 addEntry( String tokenID, String ldapServer, String valueDN, boolean member) argument
164 isMember(String tokenID, String ldapServer, String valueDN) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DSubjectEvaluationCache.java124 * @param ldapServer ldap server having the entry corresponding to
131 String ldapServer,
137 String subjectId = ldapServer+":"+valueDN;
158 * @param ldapServer ldap server having the entry corresponding to
164 String ldapServer, String valueDN) {
170 String subjectId = ldapServer+":"+valueDN;
129 addEntry( String tokenID, String ldapServer, String valueDN, boolean member) argument
163 isMember(String tokenID, String ldapServer, String valueDN) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DLDAPRoles.java126 private String ldapServer; field in class:LDAPRoles
162 ldapServer = configuredLdapServer.toLowerCase();
163 localDS = PolicyUtils.isLocalDS(ldapServer);
227 + "\nldapServer: " + ldapServer
246 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize,
248 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
468 tokenID, ldapServer,roleName)) != null) {
528 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
620 Object[] element = (Object[])serverRoleMap.get(ldapServer);
657 serverRoleMap.put(ldapServer,ele
[all...]
H A DDSAMERole.java79 private String ldapServer; field in class:DSAMERole
117 ldapServer = configuredLdapServer.toLowerCase();
343 tokenID, ldapServer,valueDN)) != null) {
392 +tokenID+" "+ldapServer+" "+valueDN+" "+roleMatch
395 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
H A DLDAPUsers.java93 private String ldapServer; field in class:LDAPUsers
133 ldapServer = configuredLdapServer.toLowerCase();
134 localDS = PolicyUtils.isLocalDS(ldapServer);
188 + "\nldapServer: " + ldapServer
202 LDAPConnectionPools.initConnectionPool(ldapServer,
204 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
536 Boolean matchFound = SubjectEvaluationCache.isMember(tokenID, ldapServer, valueDN);
567 + tokenID + " " + ldapServer + " " + valueDN + " " + userMatch
570 SubjectEvaluationCache.addEntry(tokenID, ldapServer, valueDN, userMatch);
H A DOrganization.java98 private String ldapServer; field in class:Organization
137 ldapServer = configuredLdapServer.toLowerCase();
138 localDS = PolicyUtils.isLocalDS(ldapServer);
208 + "\nldapServer: " + ldapServer
224 LDAPConnectionPools.initConnectionPool(ldapServer,
226 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
456 tokenID, ldapServer,valueDN)) != null) {
538 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
H A DLDAPFilterCondition.java124 private String ldapServer; field in class:LDAPFilterCondition
304 tokenID, ldapServer, ldapConditionFilter)) != null) {
382 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
519 ldapServer = configuredLdapServer.toLowerCase();
559 + "\nldapServer: " + ldapServer
576 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize,
578 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
H A DLDAPGroups.java112 private String ldapServer; field in class:LDAPGroups
150 ldapServer = configuredLdapServer.toLowerCase();
151 localDS = PolicyUtils.isLocalDS(ldapServer);
215 + "\nldapServer: " + ldapServer
234 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize, options);
235 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
458 if ((matchFound = SubjectEvaluationCache.isMember(tokenID, ldapServer,groupDN)) != null) {
598 ldapServer, groupName, groupMatch);
599 SubjectEvaluationCache.addEntry(tokenID, ldapServer, groupName, groupMatch);
H A DSubjectReferentialIntegrityPlugin.java113 String ldapServer =
116 boolean localDS = PolicyUtils.isLocalDS(ldapServer);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DLDAPRoles.java129 private String ldapServer; field in class:LDAPRoles
165 ldapServer = configuredLdapServer.toLowerCase();
166 localDS = PolicyUtils.isLocalDS(ldapServer);
230 + "\nldapServer: " + ldapServer
249 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize,
251 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
470 tokenID, ldapServer,roleName)) != null) {
528 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
620 Object[] element = (Object[])serverRoleMap.get(ldapServer);
657 serverRoleMap.put(ldapServer,ele
[all...]
H A DDSAMERole.java80 private String ldapServer; field in class:DSAMERole
118 ldapServer = configuredLdapServer.toLowerCase();
343 tokenID, ldapServer,valueDN)) != null) {
392 +tokenID+" "+ldapServer+" "+valueDN+" "+roleMatch
396 SubjectEvaluationCache.addEntry(tokenID, ldapServer, valueDN, roleMatch);
H A DLDAPUsers.java94 private String ldapServer; field in class:LDAPUsers
134 ldapServer = configuredLdapServer.toLowerCase();
135 localDS = PolicyUtils.isLocalDS(ldapServer);
189 + "\nldapServer: " + ldapServer
203 LDAPConnectionPools.initConnectionPool(ldapServer,
205 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
536 Boolean matchFound = SubjectEvaluationCache.isMember(tokenID, ldapServer, valueDN);
567 + tokenID + " " + ldapServer + " " + valueDN + " " + userMatch
570 SubjectEvaluationCache.addEntry(tokenID, ldapServer, valueDN, userMatch);
H A DOrganization.java99 private String ldapServer; field in class:Organization
138 ldapServer = configuredLdapServer.toLowerCase();
139 localDS = PolicyUtils.isLocalDS(ldapServer);
209 + "\nldapServer: " + ldapServer
225 LDAPConnectionPools.initConnectionPool(ldapServer,
227 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
454 tokenID, ldapServer,valueDN)) != null) {
534 SubjectEvaluationCache.addEntry(tokenID, ldapServer,
H A DLDAPFilterCondition.java127 private String ldapServer; field in class:LDAPFilterCondition
306 tokenID, ldapServer, ldapConditionFilter)) != null) {
387 SubjectEvaluationCache.addEntry(tokenID, ldapServer, ldapConditionFilter, member);
518 ldapServer = configuredLdapServer.toLowerCase();
558 + "\nldapServer: " + ldapServer
575 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize,
577 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
H A DLDAPGroups.java113 private String ldapServer; field in class:LDAPGroups
151 ldapServer = configuredLdapServer.toLowerCase();
152 localDS = PolicyUtils.isLocalDS(ldapServer);
216 + "\nldapServer: " + ldapServer
235 LDAPConnectionPools.initConnectionPool(ldapServer, authid, authpw, sslEnabled, minPoolSize, maxPoolSize, options);
236 connPool = LDAPConnectionPools.getConnectionPool(ldapServer);
458 if ((matchFound = SubjectEvaluationCache.isMember(tokenID, ldapServer,groupDN)) != null) {
600 ldapServer, groupName, groupMatch);
601 SubjectEvaluationCache.addEntry(tokenID, ldapServer, groupName, groupMatch);
H A DSubjectReferentialIntegrityPlugin.java113 String ldapServer =
116 boolean localDS = PolicyUtils.isLocalDS(ldapServer);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/config/wizard/
H A DStep4.java474 final String ldapServer = "_ldap._tcp." + domainName;
476 // Attempting to resolve ldapServer to SRV record.
481 ictx.getAttributes(ldapServer, new String[]{"SRV"});
498 // Failed to resolve ldapServer to SRV record.
/forgerock/openam/openam-core/src/main/java/com/sun/identity/config/wizard/
H A DStep4.java474 final String ldapServer = "_ldap._tcp." + domainName;
476 // Attempting to resolve ldapServer to SRV record.
481 ictx.getAttributes(ldapServer, new String[]{"SRV"});
498 // Failed to resolve ldapServer to SRV record.
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/
H A DAMSetupServlet.java2084 String ldapServer = "_ldap._tcp." + domainName;
2086 // Attempting to resolve ldapServer to SRV record.
2090 Attributes attributes = ictx.getAttributes(ldapServer, new String[]{"SRV"});
2100 // Failed to resolve ldapServer to SRV record.
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DAMSetupServlet.java2032 String ldapServer = "_ldap._tcp." + domainName;
2034 // Attempting to resolve ldapServer to SRV record.
2038 Attributes attributes = ictx.getAttributes(ldapServer, new String[]{"SRV"});
2048 // Failed to resolve ldapServer to SRV record.

Completed in 76 milliseconds