From 5ceb2e9601d2501d021d0c61188ec913076555a0 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Wed, 26 Sep 2007 12:21:02 +0000
Subject: [PATCH] Merge branches/temp-admin@3208 onto trunk@3208.

---
 opends/src/server/org/opends/server/core/CertificateMapperConfigManager.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/CertificateMapperConfigManager.java b/opends/src/server/org/opends/server/core/CertificateMapperConfigManager.java
index 423af81..31321fd 100644
--- a/opends/src/server/org/opends/server/core/CertificateMapperConfigManager.java
+++ b/opends/src/server/org/opends/server/core/CertificateMapperConfigManager.java
@@ -123,7 +123,7 @@
 
       if (mapperConfiguration.isEnabled())
       {
-        String className = mapperConfiguration.getMapperClass();
+        String className = mapperConfiguration.getJavaClass();
         try
         {
           CertificateMapper mapper = loadMapper(className, mapperConfiguration,
@@ -154,7 +154,7 @@
     {
       // Get the name of the class and make sure we can instantiate it as a
       // certificate mapper.
-      String className = configuration.getMapperClass();
+      String className = configuration.getJavaClass();
       try
       {
         loadMapper(className, configuration, false);
@@ -193,7 +193,7 @@
 
     // Get the name of the class and make sure we can instantiate it as a
     // certificate mapper.
-    String className = configuration.getMapperClass();
+    String className = configuration.getJavaClass();
     try
     {
       certificateMapper = loadMapper(className, configuration, true);
@@ -269,7 +269,7 @@
     {
       // Get the name of the class and make sure we can instantiate it as a
       // certificate mapper.
-      String className = configuration.getMapperClass();
+      String className = configuration.getJavaClass();
       try
       {
         loadMapper(className, configuration, false);
@@ -328,7 +328,7 @@
     // changed then we'll at least need to indicate that administrative action
     // is required.  If the mapper is disabled, then instantiate the class and
     // initialize and register it as a certificate mapper.
-    String className = configuration.getMapperClass();
+    String className = configuration.getJavaClass();
     if (existingMapper != null)
     {
       if (! className.equals(existingMapper.getClass().getName()))
@@ -392,7 +392,7 @@
       CertificateMapperCfgDefn definition =
            CertificateMapperCfgDefn.getInstance();
       ClassPropertyDefinition propertyDefinition =
-           definition.getMapperClassPropertyDefinition();
+           definition.getJavaClassPropertyDefinition();
       Class<? extends CertificateMapper> mapperClass =
            propertyDefinition.loadClass(className, CertificateMapper.class);
       CertificateMapper mapper = mapperClass.newInstance();

--
Gitblit v1.10.0