From dd8c19ab2e4fc3347c7cf74b4351a48e3774166a Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Mon, 29 Sep 2014 12:24:49 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support - SubstringMatchingRule
---
opendj3-server-dev/src/server/org/opends/server/schema/LDAPSyntaxDescriptionSyntax.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/schema/LDAPSyntaxDescriptionSyntax.java b/opendj3-server-dev/src/server/org/opends/server/schema/LDAPSyntaxDescriptionSyntax.java
index 7f3832c..e718b40 100644
--- a/opendj3-server-dev/src/server/org/opends/server/schema/LDAPSyntaxDescriptionSyntax.java
+++ b/opendj3-server-dev/src/server/org/opends/server/schema/LDAPSyntaxDescriptionSyntax.java
@@ -74,7 +74,7 @@
private MatchingRule defaultOrderingMatchingRule;
// The default substring matching rule for this syntax.
- private SubstringMatchingRule defaultSubstringMatchingRule;
+ private MatchingRule defaultSubstringMatchingRule;
@@ -202,7 +202,7 @@
* matches will not be allowed for this type by default.
*/
@Override
- public SubstringMatchingRule getSubstringMatchingRule()
+ public MatchingRule getSubstringMatchingRule()
{
return defaultSubstringMatchingRule;
}
@@ -1056,7 +1056,7 @@
* matches will not be allowed for this type by default.
*/
@Override
- public SubstringMatchingRule getSubstringMatchingRule()
+ public MatchingRule getSubstringMatchingRule()
{
return subSyntax.getSubstringMatchingRule();
}
@@ -1104,7 +1104,7 @@
private MatchingRule equalityMatchingRule;
//The substring matching rule.
- private SubstringMatchingRule substringMatchingRule;
+ private MatchingRule substringMatchingRule;
//The ordering matching rule.
private MatchingRule orderingMatchingRule;
@@ -1244,7 +1244,7 @@
* matches will not be allowed for this type by default.
*/
@Override
- public SubstringMatchingRule getSubstringMatchingRule()
+ public MatchingRule getSubstringMatchingRule()
{
if(substringMatchingRule == null)
{
@@ -1300,7 +1300,7 @@
private MatchingRule equalityMatchingRule;
//The substring matching rule.
- private SubstringMatchingRule substringMatchingRule;
+ private MatchingRule substringMatchingRule;
//The ordering matching rule.
private MatchingRule orderingMatchingRule;
@@ -1460,7 +1460,7 @@
* matches will not be allowed for this type by default.
*/
@Override
- public SubstringMatchingRule getSubstringMatchingRule()
+ public MatchingRule getSubstringMatchingRule()
{
if(substringMatchingRule == null)
{
--
Gitblit v1.10.0