From 68501b2b27f28665066338acfafc819f67bb129b Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 29 Nov 2006 22:26:48 +0000
Subject: [PATCH] Update the DirectoryServer and BindOperation classes to add missing private modifiers for member variables.

---
 opends/src/server/org/opends/server/core/DirectoryServer.java |    2 +-
 opends/src/server/org/opends/server/core/BindOperation.java   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/BindOperation.java b/opends/src/server/org/opends/server/core/BindOperation.java
index 807c88b..31640e7 100644
--- a/opends/src/server/org/opends/server/core/BindOperation.java
+++ b/opends/src/server/org/opends/server/core/BindOperation.java
@@ -167,11 +167,11 @@
 
   // The password policy error type that should be included in the response
   // control
-  PasswordPolicyErrorType pwPolicyErrorType;
+  private PasswordPolicyErrorType pwPolicyErrorType;
 
   // The password policy warning type that should be included in the response
   // control
-  PasswordPolicyWarningType pwPolicyWarningType;
+  private PasswordPolicyWarningType pwPolicyWarningType;
 
   // The password policy state information for this bind operation.
   private PasswordPolicyState pwPolicyState;
diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 09f7bc0..ea8d609 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -466,7 +466,7 @@
   private RootDSEBackend rootDSEBackend;
 
   // The SASL mechanism config manager for the Directory Server.
-  SASLConfigManager saslConfigManager;
+  private SASLConfigManager saslConfigManager;
 
   // The schema for the Directory Server.
   private Schema schema;

--
Gitblit v1.10.0