From 7ddf5a923866031a7034f457715d6a5e4ecbca67 Mon Sep 17 00:00:00 2001
From: sin <sin@localhost>
Date: Sat, 31 Jan 2009 07:06:11 +0000
Subject: [PATCH] Integrating the changes related to Collation indexing support
---
opends/src/server/org/opends/server/admin/PropertyValueVisitor.java | 22 +++++++++++++++++++++-
1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/PropertyValueVisitor.java b/opends/src/server/org/opends/server/admin/PropertyValueVisitor.java
index 9293048..c7b42be 100644
--- a/opends/src/server/org/opends/server/admin/PropertyValueVisitor.java
+++ b/opends/src/server/org/opends/server/admin/PropertyValueVisitor.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2008 Sun Microsystems, Inc.
+ * Copyright 2008-2009 Sun Microsystems, Inc.
*/
package org.opends.server.admin;
@@ -35,6 +35,7 @@
import org.opends.server.types.AttributeType;
import org.opends.server.types.DN;
import org.opends.server.authorization.dseecompat.Aci;
+import org.opends.server.api.ExtensibleMatchingRule;
/**
@@ -308,6 +309,25 @@
/**
+ * Visit an extensible matching rule type.
+ *
+ * @param pd
+ * The extensible matching rule type property definition.
+ * @param v
+ * The property value to visit.
+ * @param p
+ * A visitor specified parameter.
+ * @return Returns a visitor specified result.
+ */
+ public R visitExtensibleMatchingRuleType(
+ ExtensibleMatchingRuleTypePropertyDefinition pd,
+ ExtensibleMatchingRule v, P p) {
+ return visitUnknown(pd, v, p);
+ }
+
+
+
+ /**
* Visit an unknown type of property value. Implementations of this
* method can provide default behavior for unknown types of
* property.
--
Gitblit v1.10.0