mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
08.28.2007 b789281ce6b563d4def485b66d5e0451a4ceea55
Fix a number of copy-and-paste errors in the javadoc for the virtual static
group implementation.
1 files modified
12 ■■■■ changed files
opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java 12 ●●●● patch | view | raw | blame | history
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);