From f5e61220e9878f71165989bd9f21f1d0a568bb87 Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Fri, 30 Jul 2010 13:23:20 +0000
Subject: [PATCH] Code refactoring, renaming and commenting only. No feature nor behavior change.

---
 opends/src/server/org/opends/server/replication/plugin/AttrHistoricalWithOptions.java |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/plugin/AttrInfoWithOptions.java b/opends/src/server/org/opends/server/replication/plugin/AttrHistoricalWithOptions.java
similarity index 79%
rename from opends/src/server/org/opends/server/replication/plugin/AttrInfoWithOptions.java
rename to opends/src/server/org/opends/server/replication/plugin/AttrHistoricalWithOptions.java
index c16b8e5..f3f5864 100644
--- a/opends/src/server/org/opends/server/replication/plugin/AttrInfoWithOptions.java
+++ b/opends/src/server/org/opends/server/replication/plugin/AttrHistoricalWithOptions.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2006-2008 Sun Microsystems, Inc.
+ *      Copyright 2006-2010 Sun Microsystems, Inc.
  */
 package org.opends.server.replication.plugin;
 
@@ -34,16 +34,16 @@
  * Used to store historical information.
  * Contain a map of AttrInfo for each options of a given attribute type.
  */
-public class AttrInfoWithOptions
+public class AttrHistoricalWithOptions
 {
-  private HashMap<Set<String> ,AttributeInfo> attributesInfo;
+  private HashMap<Set<String> ,AttrHistorical> attributesInfo;
 
   /**
    * creates a new AttrInfoWithOptions.
    */
-  public AttrInfoWithOptions()
+  public AttrHistoricalWithOptions()
   {
-    attributesInfo = new HashMap<Set<String> ,AttributeInfo>();
+    attributesInfo = new HashMap<Set<String> ,AttrHistorical>();
   }
 
   /**
@@ -52,7 +52,7 @@
    * @param options the options
    * @return the information
    */
-  public AttributeInfo get(Set<String> options)
+  public AttrHistorical get(Set<String> options)
   {
     return attributesInfo.get(options);
   }
@@ -64,7 +64,7 @@
    * @param attrInfo the info to associate
    * @return the info to associate
    */
-  public AttributeInfo put(Set<String> options, AttributeInfo attrInfo )
+  public AttrHistorical put(Set<String> options, AttrHistorical attrInfo )
   {
     return attributesInfo.put(options, attrInfo);
   }
@@ -73,7 +73,7 @@
    * get the Attributes information associated to this object.
    * @return the set of informations
    */
-  public HashMap<Set<String>, AttributeInfo> getAttributesInfo()
+  public HashMap<Set<String>, AttrHistorical> getAttributesInfo()
   {
     return attributesInfo;
   }

--
Gitblit v1.10.0