src/share/classes/javax/naming/ldap/PagedResultsControl.java

Print this page

        

*** 34,44 **** * server in batches of a specified size. * The requestor controls the rate at which batches are returned by the rate * at which it invokes search operations. * <p> * The following code sample shows how the class may be used: ! * <pre> * * // Open an LDAP association * LdapContext ctx = new InitialLdapContext(); * * // Activate paged results --- 34,44 ---- * server in batches of a specified size. * The requestor controls the rate at which batches are returned by the rate * at which it invokes search operations. * <p> * The following code sample shows how the class may be used: ! * <pre>{@code * * // Open an LDAP association * LdapContext ctx = new InitialLdapContext(); * * // Activate paged results
*** 87,112 **** * * // Close the LDAP association * ctx.close(); * ... * ! * </pre> * <p> * This class implements the LDAPv3 Control for paged-results as defined in * <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>. * * The control's value has the following ASN.1 definition: ! * <pre> * * realSearchControlValue ::= SEQUENCE { * size INTEGER (0..maxInt), * -- requested page size from client * -- result set size estimate from server * cookie OCTET STRING * } * ! * </pre> * * @since 1.5 * @see PagedResultsResponseControl * @author Vincent Ryan */ --- 87,112 ---- * * // Close the LDAP association * ctx.close(); * ... * ! * } </pre> * <p> * This class implements the LDAPv3 Control for paged-results as defined in * <a href="http://www.ietf.org/rfc/rfc2696.txt">RFC 2696</a>. * * The control's value has the following ASN.1 definition: ! * <pre>{@code * * realSearchControlValue ::= SEQUENCE { * size INTEGER (0..maxInt), * -- requested page size from client * -- result set size estimate from server * cookie OCTET STRING * } * ! * }</pre> * * @since 1.5 * @see PagedResultsResponseControl * @author Vincent Ryan */