From a21bf04f4329e6c386345307814f9cc4a37a97f0 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 27 Sep 2007 15:00:36 +0000
Subject: [PATCH] Rename ContainsValueCondition to ContainsCondition to align it with the factory method name in Conditions and the element name in the XML schema.
---
opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsCondition.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsValueCondition.java b/opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsCondition.java
similarity index 97%
rename from opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsValueCondition.java
rename to opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsCondition.java
index 1103c77..4f9f3ef 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsValueCondition.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/admin/condition/ContainsCondition.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;
--
Gitblit v1.10.0