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

Matthew Swift
07.33.2012 7532efcbe647afe2b6f435830b60aa6a0bd86aa1
Fix OPENDJ-485: Simplify SDK Filter static factory method names.

Fix typo in Javadoc.
1 files modified
3 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Filter.java 3 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Filter.java
@@ -61,11 +61,12 @@
 * Filters can be constructed using the various factory methods. For example,
 * the following code illustrates how to create a filter having the string
 * representation {code}(&(cn=bjensen)(age>=21)){code}:
 *
 * <pre>
 * import static org.forgerock.opendj.Filter.*;
 *
 * Filter filter = and(equality("cn", "bjensen"), greaterOrEqual("age", 21));
 * <pre>
 * </pre>
 *
 * @see <a href="http://tools.ietf.org/html/rfc4511">RFC 4511 - Lightweight
 *      Directory Access Protocol (LDAP): The Protocol </a>