From b789281ce6b563d4def485b66d5e0451a4ceea55 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 07 Aug 2007 23:28:33 +0000
Subject: [PATCH] Fix a number of copy-and-paste errors in the javadoc for the virtual static group implementation.

---
 opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java b/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
index 37f4d68..b73e90d 100644
--- a/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
+++ b/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
@@ -253,7 +253,7 @@
   @Override()
   public boolean supportsNestedGroups()
   {
-    // Dynamic groups don't support nesting.
+    // Virtual static groups don't support nesting.
     return false;
   }
 
@@ -265,7 +265,7 @@
   @Override()
   public List<DN> getNestedGroupDNs()
   {
-    // Dynamic groups don't support nesting.
+    // Virtual static groups don't support nesting.
     return Collections.<DN>emptyList();
   }
 
@@ -278,7 +278,7 @@
   public void addNestedGroup(DN nestedGroupDN)
          throws UnsupportedOperationException, DirectoryException
   {
-    // Dynamic groups don't support nesting.
+    // Virtual static groups don't support nesting.
     int    msgID   = MSGID_VIRTUAL_STATIC_GROUP_NESTING_NOT_SUPPORTED;
     String message = getMessage(msgID);
     throw new UnsupportedOperationException(message);
@@ -293,7 +293,7 @@
   public void removeNestedGroup(DN nestedGroupDN)
          throws UnsupportedOperationException, DirectoryException
   {
-    // Dynamic groups don't support nesting.
+    // Virtual static groups don't support nesting.
     int    msgID   = MSGID_VIRTUAL_STATIC_GROUP_NESTING_NOT_SUPPORTED;
     String message = getMessage(msgID);
     throw new UnsupportedOperationException(message);
@@ -452,7 +452,7 @@
   public void addMember(Entry userEntry)
          throws UnsupportedOperationException, DirectoryException
   {
-    // Dynamic groups don't support altering the member list.
+    // Virtual static groups don't support altering the member list.
     int    msgID   = MSGID_VIRTUAL_STATIC_GROUP_ALTERING_MEMBERS_NOT_SUPPORTED;
     String message = getMessage(msgID, String.valueOf(groupEntryDN));
     throw new UnsupportedOperationException(message);
@@ -467,7 +467,7 @@
   public void removeMember(DN userDN)
          throws UnsupportedOperationException, DirectoryException
   {
-    // Dynamic groups don't support altering the member list.
+    // Virtual static groups don't support altering the member list.
     int    msgID   = MSGID_VIRTUAL_STATIC_GROUP_ALTERING_MEMBERS_NOT_SUPPORTED;
     String message = getMessage(msgID, String.valueOf(groupEntryDN));
     throw new UnsupportedOperationException(message);

--
Gitblit v1.10.0