540541542543544545546547548
{ connectionPool.releaseConnection( connection ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } } }
664665666667668669670671672673674
entries.add( entryMapper.map( entry ) ); } } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
8990919293949596
{ return new Dn( dn ); } catch ( LdapInvalidDnException e ) { throw new LdapRuntimeException( e ); } }
164165166167168169170171172
searchRequest.addAttributes( attributes ); } } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } return searchRequest; }
117118119120121122123124125
{ requestBuilder.buildRequest( addRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } return add( addRequest ); }
134135136137138139140141142143144
connection = connectionPool.getConnection(); return connection.add( addRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
180181182183184185186187188189190
connection = connectionPool.getUnboundConnection(); return authenticateConnection( connection, userDn, password ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { safeCloseLdapConnection( connection ); }
236237238239240241242243244245
{ requestBuilder.buildRequest( deleteRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } } return delete( deleteRequest ); }
254255256257258259260261262263264
connection = connectionPool.getConnection(); return connection.delete( deleteRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
274275276277278279280281282283284
connection = connectionPool.getConnection(); return connectionCallback.doWithConnection( connection ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }