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
26 ■■■■ changed files
opends/src/server/org/opends/server/types/DN.java 26 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/types/DN.java
@@ -1267,9 +1267,9 @@
   *                              valid attribute name from the
   *                              provided DN string.
   */
  public static int parseAttributeName(byte[] dnBytes, int pos,
                                       StringBuilder attributeName,
                                       boolean allowExceptions)
  static int parseAttributeName(byte[] dnBytes, int pos,
                                StringBuilder attributeName,
                                boolean allowExceptions)
          throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "parseAttributeName",
@@ -1689,9 +1689,9 @@
   *                              valid attribute name from the
   *                              provided DN string.
   */
  public static int parseAttributeName(String dnString, int pos,
                                       StringBuilder attributeName,
                                       boolean allowExceptions)
  static int parseAttributeName(String dnString, int pos,
                                StringBuilder attributeName,
                                boolean allowExceptions)
          throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "parseAttributeName",
@@ -2103,8 +2103,8 @@
   *                              valid attribute value from the
   *                              provided DN string.
   */
  public static int parseAttributeValue(byte[] dnBytes, int pos,
                                        ByteString attributeValue)
  static int parseAttributeValue(byte[] dnBytes, int pos,
                                 ByteString attributeValue)
          throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "parseAttributeValue",
@@ -2370,8 +2370,8 @@
   *                              valid attribute value from the
   *                              provided DN string.
   */
  public static int parseAttributeValue(String dnString, int pos,
                                        ByteString attributeValue)
  static int parseAttributeValue(String dnString, int pos,
                                 ByteString attributeValue)
          throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "parseAttributeValue",
@@ -2698,9 +2698,9 @@
   * @throws  DirectoryException  If any problem occurs during the
   *                              decoding process.
   */
  public static void appendHexChars(String dnString,
                                    StringBuilder valueString,
                                    StringBuilder hexChars)
  private static void appendHexChars(String dnString,
                                     StringBuilder valueString,
                                     StringBuilder hexChars)
          throws DirectoryException
  {
    try