Package org.apache.directory.ldap.client.api.listener

Examples of org.apache.directory.ldap.client.api.listener.DeleteListener


        Method deleteChildrenMethod = connection.getClass().getDeclaredMethod( "deleteRecursive", DN.class, Map.class, DeleteListener.class );
        deleteChildrenMethod.setAccessible( true );
   
        final AtomicInteger count = new AtomicInteger();
       
        DeleteListener listener = new DeleteListener()
        {
            public void entryDeleted( LdapConnection connection, DeleteResponse response ) throws LdapException
            {
                assertNotNull( response );
                assertEquals( ResultCodeEnum.SUCCESS, response.getLdapResult().getResultCode() );
View Full Code Here

TOP

Related Classes of org.apache.directory.ldap.client.api.listener.DeleteListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.