From 04c1aca24a2cc5dc8d9a4f22ba05ac74de607f06 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 14 Feb 2014 10:19:01 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support
---
opendj3-server-dev/src/server/org/opends/server/schema/CertificateExactMatchingRule.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/schema/CertificateExactMatchingRule.java b/opendj3-server-dev/src/server/org/opends/server/schema/CertificateExactMatchingRule.java
index a37c58d..7226ef3 100644
--- a/opendj3-server-dev/src/server/org/opends/server/schema/CertificateExactMatchingRule.java
+++ b/opendj3-server-dev/src/server/org/opends/server/schema/CertificateExactMatchingRule.java
@@ -163,7 +163,7 @@
* the associated attribute syntax.
*/
@Override
- public ByteString normalizeValue(ByteSequence value)
+ public ByteString normalizeAttributeValue(ByteSequence value)
throws DirectoryException
{
// The normalized form of this value is the GSER encoded ....
@@ -260,7 +260,7 @@
// Assume the assertion value is a certificate and parse issuer and serial
// number. If the value is not even a certificate then the raw bytes will
// be returned.
- return normalizeValue(value);
+ return normalizeAttributeValue(value);
}
try
--
Gitblit v1.10.0