From 3f8b5e8ec5ddba3499bc47eec0895dc5322ccf0f Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 13 Feb 2014 16:48:07 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support
---
opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java b/opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java
index 3c0a210..1f327f9 100644
--- a/opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java
+++ b/opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java
@@ -440,7 +440,7 @@
MatchingRule matchingRule = getMatchingRule(oid);
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
names.add(name);
}
@@ -476,7 +476,7 @@
MatchingRule matchingRule = getMatchingRule(oid);
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
names.add(name);
}
@@ -516,7 +516,7 @@
Collection<String> defaultNames = new HashSet<String>();
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
defaultNames.add(name);
}
@@ -534,7 +534,7 @@
MatchingRule equalityMatchingRule = getMatchingRule(OID);
if (equalityMatchingRule != null)
{
- for (String name : equalityMatchingRule.getAllNames())
+ for (String name : equalityMatchingRule.getNames())
{
names.add(name);
}
@@ -570,7 +570,7 @@
MatchingRule matchingRule = getMatchingRule(oid);
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
names.add(name);
}
@@ -606,7 +606,7 @@
MatchingRule matchingRule = getMatchingRule(oid);
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
names.add(name);
}
@@ -641,7 +641,7 @@
MatchingRule matchingRule = getMatchingRule(oid);
if (matchingRule != null)
{
- for (String name : matchingRule.getAllNames())
+ for (String name : matchingRule.getNames())
{
names.add(name);
}
@@ -763,7 +763,7 @@
* {@inheritDoc}
*/
@Override
- public Collection<String> getAllNames()
+ public Collection<String> getNames()
{
return Collections.unmodifiableCollection(names);
}
--
Gitblit v1.10.0