All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ietf.ldap.LDAPSearchResults Maven / Gradle / Ivy

/* **************************************************************************
 * $OpenLDAP$
 *
 * Copyright (C) 1999, 2000, 2001 Novell, Inc. All Rights Reserved.
 *
 * THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND
 * TREATIES. USE, MODIFICATION, AND REDISTRIBUTION OF THIS WORK IS SUBJECT
 * TO VERSION 2.0.1 OF THE OPENLDAP PUBLIC LICENSE, A COPY OF WHICH IS
 * AVAILABLE AT HTTP://WWW.OPENLDAP.ORG/LICENSE.HTML OR IN THE FILE "LICENSE"
 * IN THE TOP-LEVEL DIRECTORY OF THE DISTRIBUTION. ANY USE OR EXPLOITATION
 * OF THIS WORK OTHER THAN AS AUTHORIZED IN VERSION 2.0.1 OF THE OPENLDAP
 * PUBLIC LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT
 * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY.
 ******************************************************************************/

package org.ietf.ldap;

/**
 * 

An LDAPSearchResults provides access to all results received during * the operation (entries and exceptions).

* * @see com.novell.ldap.LDAPSearchResults */ public class LDAPSearchResults { private com.novell.ldap.LDAPSearchResults results; /** * Constructs searchResults from a com.novell.ldap.LDAPSearchResults object */ /* package */ LDAPSearchResults( com.novell.ldap.LDAPSearchResults results) { this.results = results; } /** * get the com.novell.ldap.LDAPSearchResults object */ /* package */ com.novell.ldap.LDAPSearchResults getWrappedObject() { return results; } /** * Returns a count of the entries in the search result. * * @see com.novell.ldap.LDAPSearchResults.getCount() */ public int getCount() { return results.getCount(); } /** * Returns the latest server controls returned by the server * in the context of this search request, or null * if no server controls were returned. * * @see com.novell.ldap.LDAPSearchResults.getResponseControls() */ public LDAPControl[] getResponseControls() { com.novell.ldap.LDAPControl[] controls = results.getResponseControls(); if( controls == null) { return null; } LDAPControl[] ietfControls = new LDAPControl[controls.length]; for( int i=0; i < controls.length; i++) { ietfControls[i] = new LDAPControl( controls[i]); } return ietfControls; } /** * Reports if there are more search results. * * @see com.novell.ldap.LDAPSearchResults.hasMoreElements() */ public boolean hasMore() { return results.hasMore(); } /** * Returns the next result as an LDAPEntry. * * @see com.novell.ldap.LDAPSearchResults.next() */ public LDAPEntry next() throws LDAPException { try { return new LDAPEntry( results.next()); } catch( com.novell.ldap.LDAPException ex) { if( ex instanceof com.novell.ldap.LDAPReferralException) { throw new LDAPReferralException( (com.novell.ldap.LDAPReferralException)ex); } else { throw new LDAPException( ex); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy