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

Mark Craig
08.29.2012 7473e1539d080a110a25a62e6fd2bacfe3bd1def
Align with r7957
2 files modified
20 ■■■■ changed files
opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Controls.java 2 ●●● patch | view | raw | blame | history
opendj3/src/main/docbkx/dev-guide/chap-controls.xml 18 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Controls.java
@@ -811,7 +811,7 @@
            final SearchRequest request =
                    Requests.newSearchRequest("dc=example,dc=com",
                                SearchScope.WHOLE_SUBTREE,
                                "cn=*Class of Service", "*", "+")
                                "cn=*Class of Service", "cn", "subtreeSpecification")
                            .addControl(SubentriesRequestControl.newControl(
                                true, true));
opendj3/src/main/docbkx/dev-guide/chap-controls.xml
@@ -977,7 +977,7 @@
    final SearchRequest request =
            Requests.newSearchRequest("dc=example,dc=com",
                        SearchScope.WHOLE_SUBTREE,
                        "cn=*Class of Service", "*", "+")
                        "cn=*Class of Service", "cn", "subtreeSpecification")
                    .addControl(SubentriesRequestControl.newControl(
                        true, true));
@@ -1003,7 +1003,21 @@
  <para>OpenDJ directory server supports the control.</para>
  <programlisting>TODO: pending OPENDJ-486</programlisting>
  <programlisting language="ldif">dn: cn=Bronze Class of Service,dc=example,dc=com
cn: Bronze Class of Service
subtreeSpecification: { base "ou=People", specificationFilter "(classOfService=
 bronze)" }
dn: cn=Silver Class of Service,dc=example,dc=com
cn: Silver Class of Service
subtreeSpecification: { base "ou=People", specificationFilter "(classOfService=
 silver)" }
dn: cn=Gold Class of Service,dc=example,dc=com
cn: Gold Class of Service
subtreeSpecification: { base "ou=People", specificationFilter "(classOfService=
 gold)" }
</programlisting>
 </section>
 <section xml:id="use-subtree-delete-control">