summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/apps/CMS.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/apps/CMS.java')
-rw-r--r--base/common/src/com/netscape/certsrv/apps/CMS.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/base/common/src/com/netscape/certsrv/apps/CMS.java b/base/common/src/com/netscape/certsrv/apps/CMS.java
index e301e20ef..3ba6d7577 100644
--- a/base/common/src/com/netscape/certsrv/apps/CMS.java
+++ b/base/common/src/com/netscape/certsrv/apps/CMS.java
@@ -626,10 +626,10 @@ public final class CMS {
return _engine.getUserMessage(null /* from session context */, msgID, p1, p2, p3);
}
- public static LDAPConnection getBoundConnection(String host, int port,
+ public static LDAPConnection getBoundConnection(String id, String host, int port,
int version, LDAPSSLSocketFactoryExt fac, String bindDN,
String bindPW) throws LDAPException {
- return _engine.getBoundConnection(host, port, version, fac,
+ return _engine.getBoundConnection(id, host, port, version, fac,
bindDN, bindPW);
}
@@ -1330,9 +1330,9 @@ public final class CMS {
*
* @return bound LDAP connection pool
*/
- public static ILdapConnFactory getLdapBoundConnFactory()
+ public static ILdapConnFactory getLdapBoundConnFactory(String id)
throws ELdapException {
- return _engine.getLdapBoundConnFactory();
+ return _engine.getLdapBoundConnFactory(id);
}
/**
@@ -1340,9 +1340,9 @@ public final class CMS {
*
* @return anonymous LDAP connection pool
*/
- public static ILdapConnFactory getLdapAnonConnFactory()
+ public static ILdapConnFactory getLdapAnonConnFactory(String id)
throws ELdapException {
- return _engine.getLdapAnonConnFactory();
+ return _engine.getLdapAnonConnFactory(id);
}
/**