Java Code Examples for org.apache.directory.ldap.client.api.LdapConnectionPool#getLdapApiService()
The following examples show how to use
org.apache.directory.ldap.client.api.LdapConnectionPool#getLdapApiService() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ApiLdapClientApiOsgiTest.java From directory-ldap-api with Apache License 2.0 | 6 votes |
@Override protected void useBundleClasses() throws Exception { new LdapNetworkConnection().close(); new SaslGssApiRequest(); new Krb5LoginConfiguration(); new AddFuture( new LdapNetworkConnection(), 2 ); new LdapConnectionTemplate( new LdapConnectionPool( new DefaultPoolableLdapConnectionFactory( new LdapConnectionConfig() ) ) ); FilterBuilder.and( FilterBuilder.not( FilterBuilder.contains( "cn", "a", "b" ) ) ).toString(); // Test for DIRAPI-239 PooledObjectFactory<LdapConnection> factory = new DefaultPoolableLdapConnectionFactory( new LdapConnectionConfig() ); GenericObjectPoolConfig config = new GenericObjectPoolConfig(); LdapConnectionPool ldapConnectionPool = new LdapConnectionPool( factory, config ); ldapConnectionPool.getLdapApiService(); ldapConnectionPool.getTestOnBorrow(); ldapConnectionPool.close(); }
Example 2
Source File: LdapConnectionTemplate.java From directory-ldap-api with Apache License 2.0 | 5 votes |
/** * Creates a new instance of LdapConnectionTemplate. * * @param connectionPool The pool to obtain connections from. */ public LdapConnectionTemplate( LdapConnectionPool connectionPool ) { if ( LOG.isDebugEnabled() ) { LOG.debug( I18n.msg( I18n.MSG_04174_CREATING_NEW_CONNECTION_TEMPLATE ) ); } this.connectionPool = connectionPool; this.passwordPolicyRequestControl = new PasswordPolicyResponseImpl(); this.passwordPolicyResponder = new PasswordPolicyResponderImpl( connectionPool.getLdapApiService() ); this.modelFactory = new ModelFactoryImpl(); }