From 80c58327faaa4873369f6bb949e62792c2f708e0 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.
---
opends/src/server/org/opends/server/extensions/DefaultEntryCache.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java b/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
index b5e7020..7633e06 100644
--- a/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
+++ b/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
@@ -25,6 +25,7 @@
* Portions Copyright 2006-2007 Sun Microsystems, Inc.
*/
package org.opends.server.extensions;
+import org.opends.messages.Message;
@@ -44,7 +45,6 @@
-
/**
* This class defines the default entry cache that will be used in the server if
* none is configured. It does not actually store any entries, so all calls to
@@ -212,7 +212,7 @@
*/
public boolean isConfigurationChangeAcceptable(
EntryCacheCfg configuration,
- List<String> unacceptableReasons
+ List<Message> unacceptableReasons
)
{
// No implementation required.
@@ -231,7 +231,7 @@
// No implementation required.
ConfigChangeResult changeResult = new ConfigChangeResult(
- ResultCode.SUCCESS, false, new ArrayList<String>()
+ ResultCode.SUCCESS, false, new ArrayList<Message>()
);
return changeResult;
--
Gitblit v1.10.0