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

lutoff
26.53.2006 c18344a0f0a586816b30ad302e1fd3a9fd0faf49
 - align user friendly name with draft-ietf-ldapext-psearch
- make a method signature independent from the implementation

Reviewed by Neil and Matt
1 files modified
10 ■■■■ changed files
opends/src/server/org/opends/server/controls/PersistentSearchChangeType.java 10 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/controls/PersistentSearchChangeType.java
@@ -116,13 +116,13 @@
    switch (intValue)
    {
      case 1:
        return "Add";
        return "add";
      case 2:
        return "Delete";
        return "delete";
      case 4:
        return "Modify";
        return "modify";
      case 8:
        return "Modify_DN";
        return "modDN";
      default:
        return "unknown";
    }
@@ -307,7 +307,7 @@
   *
   * @return  A string representation of the provided set of change types.
   */
  public static String changeTypesToString(HashSet<PersistentSearchChangeType>
  public static String changeTypesToString(Set<PersistentSearchChangeType>
                                                changeTypes)
  {
    StringBuilder buffer = new StringBuilder();