mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
29.55.2013 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/SearchRequest.java
@@ -51,8 +51,8 @@
 * create a new search request.
 *
 * <pre>
 * SearchRequest request = Requests.newSearchRequest(
 *          "dc=example,dc=com", SearchScope.WHOLE_SUBTREE, "(sn=Jensen)", "cn");
 * SearchRequest request = Requests.newSearchRequest(&quot;dc=example,dc=com&quot;, SearchScope.WHOLE_SUBTREE,
 *         &quot;(sn=Jensen)&quot;, &quot;cn&quot;);
 * </pre>
 *
 * Alternatively, use the
@@ -82,9 +82,7 @@
     */
    SearchRequest addAttribute(String... attributeDescriptions);
    /**
     * {@inheritDoc}
     */
    @Override
    SearchRequest addControl(Control control);
    /**
@@ -97,15 +95,11 @@
     */
    List<String> getAttributes();
    /**
     * {@inheritDoc}
     */
    @Override
    <C extends Control> C getControl(ControlDecoder<C> decoder, DecodeOptions options)
            throws DecodeException;
    /**
     * {@inheritDoc}
     */
    @Override
    List<Control> getControls();
    /**