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

Print this page

        

*** 38,48 **** * supplied in the sort control and then returned to the requestor. If sorting * is not supported at the server (and the sort control is marked as critical) * then the search operation is not performed and an error is returned. * <p> * The following code sample shows how the class may be used: ! * <pre> * * // Open an LDAP association * LdapContext ctx = new InitialLdapContext(); * * // Activate sorting --- 38,48 ---- * supplied in the sort control and then returned to the requestor. If sorting * is not supported at the server (and the sort control is marked as critical) * then the search operation is not performed and an error is returned. * <p> * The following code sample shows how the class may be used: ! * <pre>{@code * * // Open an LDAP association * LdapContext ctx = new InitialLdapContext(); * * // Activate sorting
*** 83,93 **** * * // Close the LDAP association * ctx.close(); * ... * ! * </pre> * <p> * This class implements the LDAPv3 Request Control for server-side sorting * as defined in * <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>. * --- 83,93 ---- * * // Close the LDAP association * ctx.close(); * ... * ! * }</pre> * <p> * This class implements the LDAPv3 Request Control for server-side sorting * as defined in * <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>. *