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

matthew_swift
05.42.2009 22094368c2865dcfb6daf8366425212b721a4657
opends/src/server/org/opends/server/config/ConfigAttribute.java
@@ -449,7 +449,7 @@
    if (! valueIsAcceptable(value, rejectReason))
    {
      Message message = ERR_CONFIG_ATTR_REJECTED_VALUE.get(
          value.getStringValue(), name, rejectReason.toString());
          value.getValue().toString(), name, rejectReason.toString());
      throw new ConfigException(message);
    }
@@ -470,7 +470,7 @@
      if (! valueIsAcceptable(value, rejectReason))
      {
        Message message = ERR_CONFIG_ATTR_REJECTED_VALUE.get(
            value.getStringValue(), name, rejectReason.toString());
            value.getValue().toString(), name, rejectReason.toString());
        throw new ConfigException(message);
      }
    }
@@ -589,14 +589,14 @@
      if (tempValues.contains(value))
      {
        Message message = ERR_CONFIG_ATTR_ADD_VALUES_ALREADY_EXISTS.get(
            name, value.getStringValue());
            name, value.getValue().toString());
        throw new ConfigException(message);
      }
      if (! valueIsAcceptable(value, rejectReason))
      {
        Message message = ERR_CONFIG_ATTR_REJECTED_VALUE.get(
            value.getStringValue(), name, rejectReason.toString());
            value.getValue().toString(), name, rejectReason.toString());
        throw new ConfigException(message);
      }
    }
@@ -657,7 +657,7 @@
      if (! tempValues.remove(value))
      {
        Message message =
            ERR_CONFIG_ATTR_NO_SUCH_VALUE.get(name, value.getStringValue());
           ERR_CONFIG_ATTR_NO_SUCH_VALUE.get(name, value.getValue().toString());
        throw new ConfigException(message);
      }
    }