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

neil_a_wilson
23.08.2007 b66fb93ffd3b2d5988266b0cac000d75bd313497
Update the DN class to remove the "public" modifier from a few methods that
are intended only for internal use.
1 files modified
10 ■■■■ changed files
opends/src/server/org/opends/server/types/DN.java 10 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/types/DN.java
@@ -1267,7 +1267,7 @@
   *                              valid attribute name from the
   *                              provided DN string.
   */
  public static int parseAttributeName(byte[] dnBytes, int pos,
  static int parseAttributeName(byte[] dnBytes, int pos,
                                       StringBuilder attributeName,
                                       boolean allowExceptions)
          throws DirectoryException
@@ -1689,7 +1689,7 @@
   *                              valid attribute name from the
   *                              provided DN string.
   */
  public static int parseAttributeName(String dnString, int pos,
  static int parseAttributeName(String dnString, int pos,
                                       StringBuilder attributeName,
                                       boolean allowExceptions)
          throws DirectoryException
@@ -2103,7 +2103,7 @@
   *                              valid attribute value from the
   *                              provided DN string.
   */
  public static int parseAttributeValue(byte[] dnBytes, int pos,
  static int parseAttributeValue(byte[] dnBytes, int pos,
                                        ByteString attributeValue)
          throws DirectoryException
  {
@@ -2370,7 +2370,7 @@
   *                              valid attribute value from the
   *                              provided DN string.
   */
  public static int parseAttributeValue(String dnString, int pos,
  static int parseAttributeValue(String dnString, int pos,
                                        ByteString attributeValue)
          throws DirectoryException
  {
@@ -2698,7 +2698,7 @@
   * @throws  DirectoryException  If any problem occurs during the
   *                              decoding process.
   */
  public static void appendHexChars(String dnString,
  private static void appendHexChars(String dnString,
                                    StringBuilder valueString,
                                    StringBuilder hexChars)
          throws DirectoryException