118119120121122123124125126
{ requestBuilder.buildRequest( addRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } return add( addRequest ); }
135136137138139140141142143144145
connection = connectionPool.getConnection(); return connection.add( addRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
181182183184185186187188189190191
connection = connectionPool.getConnection(); return authenticateConnection( connection, userDn, password ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
237238239240241242243244245246
{ requestBuilder.buildRequest( deleteRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } } return delete( deleteRequest ); }
255256257258259260261262263264265
connection = connectionPool.getConnection(); return connection.delete( deleteRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
275276277278279280281282283284285
connection = connectionPool.getConnection(); return connectionCallback.doWithConnection( connection ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
305306307308309310311312313314315
: connection.lookup( dn, attributes ); return entry == null ? null : entryMapper.map( entry ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
376377378379380381382383384385386
modifyPassword( connection, userDn, newPassword ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }
395396397398399400401402403
{ requestBuilder.buildRequest( modifyRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } return modify( modifyRequest ); }
412413414415416417418419420421422
connection = connectionPool.getConnection(); return connection.modify( modifyRequest ); } catch ( LdapException e ) { throw new LdapRuntimeException( e ); } finally { returnLdapConnection( connection ); }