386387388389390391392393394395396
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 1, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof ModifyResponse ) { assertTrue( true ); }
423424425426427428429430431432433
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 1, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof SearchResponse ) { assertTrue( true ); }
460461462463464465466467468469470
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof AddResponse ) { assertTrue( true ); }
497498499500501502503504505506507
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof BindResponse ) { assertTrue( true ); }
534535536537538539540541542543544
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof CompareResponse ) { assertTrue( true ); }
571572573574575576577578579580581
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof DelResponse ) { assertTrue( true ); }
608609610611612613614615616617618
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof ErrorResponse ) { assertTrue( true ); }
645646647648649650651652653654655
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof ExtendedResponse ) { assertTrue( true ); }
682683684685686687688689690691692
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof ModifyDNResponse ) { assertTrue( true ); }
719720721722723724725726727728729
BatchResponse batchResponse = parser.getBatchResponse(); assertEquals( 2, batchResponse.getResponses().size() ); LdapResponse response = batchResponse.getCurrentResponse(); if ( response instanceof ModifyResponse ) { assertTrue( true ); }