From e1ea3e0d8999105f144d2be98e0286928b8319ed Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 03 Apr 2007 18:52:11 +0000
Subject: [PATCH] Add initial support for a virtual attribute subsystem, and implement a few different kinds of virtual attributes.  This commit addresses the following issues:

---
 opends/src/server/org/opends/server/api/ClientConnection.java |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/ClientConnection.java b/opends/src/server/org/opends/server/api/ClientConnection.java
index 4eaf510..75740c4 100644
--- a/opends/src/server/org/opends/server/api/ClientConnection.java
+++ b/opends/src/server/org/opends/server/api/ClientConnection.java
@@ -73,9 +73,6 @@
  */
 public abstract class ClientConnection
 {
-
-
-
   // The set of authentication information for this client connection.
   private AuthenticationInfo authenticationInfo;
 
@@ -1197,7 +1194,7 @@
    *                    searches performed using this client
    *                    connection.
    */
-  public final void setSizeLimit(int sizeLimit)
+  public void setSizeLimit(int sizeLimit)
   {
     this.sizeLimit = sizeLimit;
   }
@@ -1226,7 +1223,7 @@
    *                           entries that should be check for
    *                           matches during a search.
    */
-  public final void setLookthroughLimit(int lookthroughLimit)
+  public void setLookthroughLimit(int lookthroughLimit)
   {
     this.lookthroughLimit = lookthroughLimit;
   }
@@ -1255,7 +1252,7 @@
    *                    searches performed using this client
    *                    connection.
    */
-  public final void setTimeLimit(int timeLimit)
+  public void setTimeLimit(int timeLimit)
   {
     this.timeLimit = timeLimit;
   }

--
Gitblit v1.10.0