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

Nicolas Capponi
16.32.2016 afe88363f70903f207a25edab27e7adcb9fc66e0
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/Utilities.java
@@ -2030,7 +2030,7 @@
    // Check all the attributes that we consider binaries.
    if (schema != null)
    {
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema.getSchemaNG()).getAttributeType();
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema).getAttributeType();
      if (!attrType.isPlaceHolder())
      {
        String syntaxOID = attrType.getSyntax().getOID();
@@ -2064,7 +2064,7 @@
  {
    if (schema != null)
    {
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema.getSchemaNG()).getAttributeType();
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema).getAttributeType();
      if (!attrType.isPlaceHolder())
      {
        PasswordType passwordType = SchemaUtils.checkPasswordType(attrType);
@@ -2078,7 +2078,7 @@
  {
    if (schema != null)
    {
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema.getSchemaNG()).getAttributeType();
      AttributeType attrType = AttributeDescription.valueOf(attrName, schema).getAttributeType();
      if (!attrType.isPlaceHolder())
      {
        return oids.contains(attrType.getSyntax().getOID());