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

matthew_swift
27.00.2007 a9dddc41f04c566bcdd673ee1fc2c061548c4953
opends/src/server/org/opends/server/admin/condition/ContainsCondition.java
File was renamed from opends/src/server/org/opends/server/admin/condition/ContainsValueCondition.java
@@ -47,7 +47,7 @@
 * A condition which evaluates to <code>true</code> if and only if a
 * property contains a particular value.
 */
public final class ContainsValueCondition implements Condition {
public final class ContainsCondition implements Condition {
  /**
   * The strongly typed underlying implementation.
@@ -134,7 +134,7 @@
   *          The string representation of the required property
   *          value.
   */
  public ContainsValueCondition(String propertyName, String stringValue) {
  public ContainsCondition(String propertyName, String stringValue) {
    Validator.ensureNotNull(propertyName, stringValue);
    this.propertyName = propertyName;
    this.propertyStringValue = stringValue;