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/loggers/debug/DebugLogger.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/loggers/debug/DebugLogger.java b/opends/src/server/org/opends/server/loggers/debug/DebugLogger.java
index 4755379..742614b 100644
--- a/opends/src/server/org/opends/server/loggers/debug/DebugLogger.java
+++ b/opends/src/server/org/opends/server/loggers/debug/DebugLogger.java
@@ -276,7 +276,7 @@
// applied dynamically, so if the class name did change then
// indicate that administrative action is required for that
// change to take effect.
- String className = config.getJavaImplementationClass();
+ String className = config.getJavaClass();
if(!className.equals(debugLogPublisher.getClass().getName()))
{
adminActionRequired = true;
@@ -347,10 +347,10 @@
private boolean isJavaClassAcceptable(DebugLogPublisherCfg config,
List<Message> unacceptableReasons)
{
- String className = config.getJavaImplementationClass();
+ String className = config.getJavaClass();
DebugLogPublisherCfgDefn d = DebugLogPublisherCfgDefn.getInstance();
ClassPropertyDefinition pd =
- d.getJavaImplementationClassPropertyDefinition();
+ d.getJavaClassPropertyDefinition();
// Load the class and cast it to a DebugLogPublisher.
DebugLogPublisher publisher = null;
Class<? extends DebugLogPublisher> theClass;
@@ -394,10 +394,10 @@
private DebugLogPublisher getDebugPublisher(DebugLogPublisherCfg config)
throws ConfigException {
- String className = config.getJavaImplementationClass();
+ String className = config.getJavaClass();
DebugLogPublisherCfgDefn d = DebugLogPublisherCfgDefn.getInstance();
ClassPropertyDefinition pd =
- d.getJavaImplementationClassPropertyDefinition();
+ d.getJavaClassPropertyDefinition();
// Load the class and cast it to a DebugLogPublisher.
Class<? extends DebugLogPublisher> theClass;
DebugLogPublisher debugLogPublisher;
--
Gitblit v1.10.0