1625162616271628162916301631
* {@inheritDoc} */ public EntryCursor search( String baseDn, String filter, SearchScope scope, String... attributes ) throws LdapException { return search( new Dn( baseDn ), filter, scope, attributes ); }
1655165616571658165916601661
* {@inheritDoc} */ public SearchFuture searchAsync( String baseDn, String filter, SearchScope scope, String... attributes ) throws LdapException { return searchAsync( new Dn( baseDn ), filter, scope, attributes ); }
2248224922502251225222532254
/** * {@inheritDoc} */ public void modify( String dn, Modification... modifications ) throws LdapException { modify( new Dn( dn ), modifications ); }
23942395239623972398239924002401240224032404
throw new IllegalArgumentException( msg ); } try { rename( new Dn( entryDn ), new Rdn( newRdn ), deleteOldRdn ); } catch ( LdapInvalidDnException e ) { LOG.error( e.getMessage(), e ); throw new LdapException( e.getMessage(), e );
24552456245724582459246024612462246324642465
throw new IllegalArgumentException( msg ); } try { move( new Dn( entryDn ), new Dn( newSuperiorDn ) ); } catch ( LdapInvalidDnException e ) { LOG.error( e.getMessage(), e ); throw new LdapException( e.getMessage(), e );
2511251225132514251525162517
/** * {@inheritDoc} */ public void moveAndRename( String entryDn, String newDn ) throws LdapException { moveAndRename( new Dn( entryDn ), new Dn( newDn ), true ); }
2559256025612562256325642565
/** * {@inheritDoc} */ public void moveAndRename( String entryDn, String newDn, boolean deleteOldRdn ) throws LdapException { moveAndRename( new Dn( entryDn ), new Dn( newDn ), true ); }
2665266626672668266926702671
/** * {@inheritDoc} */ public void delete( String dn ) throws LdapException { delete( new Dn( dn ) ); }
27252726272727282729273027312732273327342735
public void deleteTree( String dn ) throws LdapException { try { String treeDeleteOid = "1.2.840.113556.1.4.805"; Dn newDn = new Dn( dn ); if ( isControlSupported( treeDeleteOid ) ) { DeleteRequest deleteRequest = new DeleteRequestImpl(); deleteRequest.setName( newDn );
2855285628572858285928602861
/** * {@inheritDoc} */ public boolean compare( String dn, String attributeName, String value ) throws LdapException { return compare( new Dn( dn ), attributeName, value ); }