Searched defs:connectionPools (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DLDAPConnectionPools.java55 private static final Map<String, ConnectionFactory> connectionPools = new HashMap<>(); field in class:LDAPConnectionPools
114 synchronized(connectionPools) {
115 if (connectionPools.get(host) == null) {
153 connectionPools.put(host, cPool);
176 synchronized(connectionPools) {
177 return connectionPools.get(host);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DLDAPConnectionPools.java55 private static final Map<String, ConnectionFactory> connectionPools = new HashMap<>(); field in class:LDAPConnectionPools
114 synchronized(connectionPools) {
115 if (connectionPools.get(host) == null) {
155 connectionPools.put(host, cPool);
178 synchronized(connectionPools) {
179 return connectionPools.get(host);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPAuthUtils.java132 private static Map<String, ConnectionFactory> connectionPools = field in class:LDAPAuthUtils
265 private ConnectionFactory createConnectionPool(Map<String, ConnectionFactory> connectionPools, argument
271 connPool = connectionPools.get(configName);
273 synchronized (connectionPools) {
274 connPool = connectionPools.get(configName);
366 connectionPools.put(configName, connPool);
444 cPool = createConnectionPool(connectionPools, null, null);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPAuthUtils.java133 private static Map<String, ConnectionFactory> connectionPools = field in class:LDAPAuthUtils
266 private ConnectionFactory createConnectionPool(Map<String, ConnectionFactory> connectionPools, argument
272 connPool = connectionPools.get(configName);
274 synchronized (connectionPools) {
275 connPool = connectionPools.get(configName);
367 connectionPools.put(configName, connPool);
445 cPool = createConnectionPool(connectionPools, null, null);

Completed in 37 milliseconds