Package com.netscape.certsrv.ldap
Interface ILdapBoundConnFactory
-
- All Superinterfaces:
ILdapConnFactory
public interface ILdapBoundConnFactory extends ILdapConnFactory
Maintains a pool of connections to the LDAP server. CMS requests are processed on a multi threaded basis. A pool of connections then must be be maintained so this access to the Ldap server can be easily managed. The min and max size of this connection pool should be configurable. Once the maximum limit of connections is exceeded, the factory should provide proper synchronization to resolve contention issues.- Version:
- $Revision$, $Date$
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PROP_LDAPAUTHINFO
static java.lang.String
PROP_LDAPCONNINFO
static java.lang.String
PROP_MAXCONNS
static java.lang.String
PROP_MINCONNS
-
Method Summary
-
Methods inherited from interface com.netscape.certsrv.ldap.ILdapConnFactory
freeConn, getConn, init, maxConn, reset, returnConn, totalConn
-
-
-
-
Field Detail
-
PROP_MINCONNS
static final java.lang.String PROP_MINCONNS
- See Also:
- Constant Field Values
-
PROP_MAXCONNS
static final java.lang.String PROP_MAXCONNS
- See Also:
- Constant Field Values
-
PROP_LDAPCONNINFO
static final java.lang.String PROP_LDAPCONNINFO
- See Also:
- Constant Field Values
-
PROP_LDAPAUTHINFO
static final java.lang.String PROP_LDAPAUTHINFO
- See Also:
- Constant Field Values
-
-