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

jvergara
28.20.2008 2db6b1790f51bf27bf255831c7a2c56ad2ba0ae6
Fix for issues 3327 and  3472.

iAnalyze the type of the value that we committed. If it is a CommonSchemaElement use the name of the element. If the name is not defined, use the OID.
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/tools/dsconfig/SubCommandHandler.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/tools/dsconfig/SubCommandHandler.java
@@ -1240,7 +1240,7 @@
    String value;
    if (o instanceof CommonSchemaElements)
    {
      value = ((CommonSchemaElements)o).getOID();
      value = ((CommonSchemaElements)o).getNameOrOID();
    }
    else
    {