001package org.opends.messages; 002 003import org.forgerock.i18n.LocalizableMessageDescriptor; 004 005/** 006 * This file contains localizable message descriptors having the resource 007 * name {@code org.opends.messages.config}. This file was generated 008 * automatically by the {@code i18n-maven-plugin} from the property file 009 * {@code org/opends/messages/config.properties} and it should not be manually edited. 010 */ 011public final class ConfigMessages { 012 // The name of the resource bundle. 013 private static final String RESOURCE = "org.opends.messages.config"; 014 015 // Prevent instantiation. 016 private ConfigMessages() { 017 // Do nothing. 018 } 019 020 /** 021 * Returns the name of the resource associated with the messages contained 022 * in this class. The resource name may be used for obtaining named loggers, 023 * e.g. using SLF4J's {@code org.slf4j.LoggerFactory#getLogger(String name)}. 024 * 025 * @return The name of the resource associated with the messages contained 026 * in this class. 027 */ 028 public static String resourceName() { 029 return RESOURCE; 030 } 031 032 /** 033 * Configuration attribute %s is required to have at least one value but the resulted operation would have removed all values 034 */ 035 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_IS_REQUIRED = 036 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_IS_REQUIRED_1", 1); 037 038 /** 039 * Provided value %s for configuration attribute %s was rejected. The reason provided was: %s 040 */ 041 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_REJECTED_VALUE = 042 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_REJECTED_VALUE_2", 2); 043 044 /** 045 * Configuration attribute %s is single-valued, but multiple values were provided 046 */ 047 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_SET_VALUES_IS_SINGLE_VALUED = 048 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_SET_VALUES_IS_SINGLE_VALUED_3", 3); 049 050 /** 051 * Configuration attribute %s is single-valued, but adding the provided value(s) would have given it multiple values 052 */ 053 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_ADD_VALUES_IS_SINGLE_VALUED = 054 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_ADD_VALUES_IS_SINGLE_VALUED_4", 4); 055 056 /** 057 * Configuration attribute %s already contains a value %s 058 */ 059 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_ADD_VALUES_ALREADY_EXISTS = 060 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_ADD_VALUES_ALREADY_EXISTS_5", 5); 061 062 /** 063 * Cannot remove value %s from configuration attribute %s because the specified value does not exist 064 */ 065 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_NO_SUCH_VALUE = 066 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_NO_SUCH_VALUE_6", 6); 067 068 /** 069 * Unable to set the value for Boolean configuration attribute %s because the provided value %s was not either 'true' or 'false' 070 */ 071 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_INVALID_BOOLEAN_VALUE = 072 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_BOOLEAN_VALUE_7", 7); 073 074 /** 075 * Unable to retrieve the value for configuration attribute %s as an integer because that attribute does not have any values 076 */ 077 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_NO_INT_VALUE = 078 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_NO_INT_VALUE_8", 8); 079 080 /** 081 * Unable to retrieve the value for configuration attribute %s as an integer because that attribute has multiple values 082 */ 083 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_MULTIPLE_INT_VALUES = 084 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_MULTIPLE_INT_VALUES_9", 9); 085 086 /** 087 * Unable to retrieve the value for configuration attribute %s as a Java int because the value is outside the allowable range for an int 088 */ 089 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_VALUE_OUT_OF_INT_RANGE = 090 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_VALUE_OUT_OF_INT_RANGE_10", 10); 091 092 /** 093 * Unable to set the value for integer configuration attribute %s because the provided value %s cannot be interpreted as an integer value: %s 094 */ 095 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INVALID_INT_VALUE = 096 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_INT_VALUE_11", 11); 097 098 /** 099 * Unable to set the value for configuration attribute %s because the provided value %d is less than the lowest allowed value of %d 100 */ 101 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_CONFIG_ATTR_INT_BELOW_LOWER_BOUND = 102 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_BELOW_LOWER_BOUND_12", 12); 103 104 /** 105 * Unable to set the value for configuration attribute %s because the provided value %d is greater than the largest allowed value of %d 106 */ 107 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_CONFIG_ATTR_INT_ABOVE_UPPER_BOUND = 108 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_ABOVE_UPPER_BOUND_13", 13); 109 110 /** 111 * Unable to parse value %s for configuration attribute %s as an integer value: %s 112 */ 113 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INT_COULD_NOT_PARSE = 114 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_COULD_NOT_PARSE_14", 14); 115 116 /** 117 * Unable to retrieve the value for configuration attribute %s as a string because that attribute does not have any values 118 */ 119 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_NO_STRING_VALUE = 120 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_NO_STRING_VALUE_15", 15); 121 122 /** 123 * Unable to retrieve the value for configuration attribute %s as a string because that attribute has multiple values 124 */ 125 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_MULTIPLE_STRING_VALUES = 126 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_MULTIPLE_STRING_VALUES_16", 16); 127 128 /** 129 * An empty value string was provided for configuration attribute %s 130 */ 131 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_EMPTY_STRING_VALUE = 132 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_EMPTY_STRING_VALUE_17", 17); 133 134 /** 135 * The value %s is not included in the list of acceptable values for configuration attribute %s 136 */ 137 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_VALUE_NOT_ALLOWED = 138 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_VALUE_NOT_ALLOWED_18", 18); 139 140 /** 141 * '%s' is not a valid unit for configuration attribute %s 142 */ 143 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_INVALID_UNIT = 144 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_UNIT_19", 19); 145 146 /** 147 * Cannot decode %s as an integer value and a unit for configuration attribute %s because no value/unit delimiter could be found 148 */ 149 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_NO_UNIT_DELIMITER = 150 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_NO_UNIT_DELIMITER_20", 20); 151 152 /** 153 * Could not decode the integer portion of value %s for configuration attribute %s: %s 154 */ 155 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_COULD_NOT_PARSE_INT_COMPONENT = 156 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_COULD_NOT_PARSE_INT_COMPONENT_21", 21); 157 158 /** 159 * The provided value %s for integer with unit attribute %s is not allowed: %s 160 */ 161 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INVALID_VALUE_WITH_UNIT = 162 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_VALUE_WITH_UNIT_22", 22); 163 164 /** 165 * Unable to add configuration entry %s as a child of configuration entry %s because a child entry was already found with that DN 166 */ 167 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ENTRY_CONFLICTING_CHILD = 168 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRY_CONFLICTING_CHILD_23", 23); 169 170 /** 171 * Unable to remove entry %s as a child of configuration entry %s because that entry did not have a child with the specified DN 172 */ 173 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ENTRY_NO_SUCH_CHILD = 174 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRY_NO_SUCH_CHILD_24", 24); 175 176 /** 177 * Unable to remove entry %s as a child of configuration entry %s because that entry had children of its own and non-leaf entries may not be removed 178 */ 179 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ENTRY_CANNOT_REMOVE_NONLEAF = 180 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRY_CANNOT_REMOVE_NONLEAF_25", 25); 181 182 /** 183 * The specified configuration file %s does not exist or is not readable 184 */ 185 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_DOES_NOT_EXIST = 186 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DOES_NOT_EXIST_26", 26); 187 188 /** 189 * An unexpected error occurred while attempting to determine whether configuration file %s exists: %s 190 */ 191 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_CANNOT_VERIFY_EXISTENCE = 192 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CANNOT_VERIFY_EXISTENCE_27", 27); 193 194 /** 195 * An error occurred while attempting to open the configuration file %s for reading: %s 196 */ 197 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_CANNOT_OPEN_FOR_READ = 198 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CANNOT_OPEN_FOR_READ_28", 28); 199 200 /** 201 * An error occurred while attempting to read the contents of configuration file %s: %s 202 */ 203 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_READ_ERROR = 204 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_READ_ERROR_29", 29); 205 206 /** 207 * Invalid configuration attribute %s detected: the only attribute option allowed in the Directory Server configuration is "pending" to indicate the set of pending values 208 */ 209 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_OPTIONS_NOT_ALLOWED = 210 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_OPTIONS_NOT_ALLOWED_30", 30); 211 212 /** 213 * An error occurred at or near line %d while trying to parse the configuration from LDIF file %s: %s 214 */ 215 public static final LocalizableMessageDescriptor.Arg3<Number, Object, Object> ERR_CONFIG_FILE_INVALID_LDIF_ENTRY = 216 new LocalizableMessageDescriptor.Arg3<Number, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_INVALID_LDIF_ENTRY_31", 31); 217 218 /** 219 * The specified configuration file %s does not appear to contain any configuration entries 220 */ 221 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_EMPTY = 222 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_EMPTY_32", 32); 223 224 /** 225 * The first entry read from LDIF configuration file %s had a DN of "%s" rather than the expected "%s" which should be used as the Directory Server configuration root 226 */ 227 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_INVALID_BASE_DN = 228 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_INVALID_BASE_DN_33", 33); 229 230 /** 231 * An unexpected error occurred while attempting to process the Directory Server configuration file %s: %s 232 */ 233 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_GENERIC_ERROR = 234 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_GENERIC_ERROR_34", 34); 235 236 /** 237 * Configuration entry %s starting at or near line %s in the LDIF configuration file %s has the same DN as another entry already read from that file 238 */ 239 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_DUPLICATE_ENTRY = 240 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DUPLICATE_ENTRY_35", 35); 241 242 /** 243 * Configuration entry %s starting at or near line %d in the configuration LDIF file %s does not appear to have a parent entry (expected parent DN was %s) 244 */ 245 public static final LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object> ERR_CONFIG_FILE_NO_PARENT = 246 new LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_NO_PARENT_36", 36); 247 248 /** 249 * The Directory Server was unable to determine the parent DN for configuration entry %s starting at or near line %d in the configuration LDIF file %s 250 */ 251 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_CONFIG_FILE_UNKNOWN_PARENT = 252 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_UNKNOWN_PARENT_37", 37); 253 254 /** 255 * Unable to determine the Directory Server instance root from either an environment variable or based on the location of the configuration file. Please set an environment variable named %s with a value containing the absolute path to the server installation root 256 */ 257 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_CANNOT_DETERMINE_SERVER_ROOT = 258 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CANNOT_DETERMINE_SERVER_ROOT_38", 38); 259 260 /** 261 * An unexpected error occurred while trying to write configuration entry %s to LDIF: %s 262 */ 263 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_WRITE_ERROR = 264 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_WRITE_ERROR_39", 39); 265 266 /** 267 * An unexpected error occurred while trying to close the LDIF writer: %s 268 */ 269 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_CLOSE_ERROR = 270 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CLOSE_ERROR_40", 40); 271 272 /** 273 * The Directory Server configuration may not be altered by importing a new configuration from LDIF 274 */ 275 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_UNWILLING_TO_IMPORT = 276 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_UNWILLING_TO_IMPORT_41", 41); 277 278 /** 279 * There are no active access loggers defined in the Directory Server configuration. No access logging will be performed 280 */ 281 public static final LocalizableMessageDescriptor.Arg0 WARN_CONFIG_LOGGER_NO_ACTIVE_ACCESS_LOGGERS = 282 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "WARN_CONFIG_LOGGER_NO_ACTIVE_ACCESS_LOGGERS_44", 44); 283 284 /** 285 * There are no active error loggers defined in the Directory Server configuration. No error logging will be performed 286 */ 287 public static final LocalizableMessageDescriptor.Arg0 WARN_CONFIG_LOGGER_NO_ACTIVE_ERROR_LOGGERS = 288 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "WARN_CONFIG_LOGGER_NO_ACTIVE_ERROR_LOGGERS_45", 45); 289 290 /** 291 * An error occurred while attempting to create a Directory Server logger from the information in configuration entry %s: %s 292 */ 293 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGER_CANNOT_CREATE_LOGGER = 294 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_CANNOT_CREATE_LOGGER_49", 49); 295 296 /** 297 * Configuration entry %s does not contain a valid objectclass for a Directory Server access, error, or debug logger definition 298 */ 299 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_LOGGER_INVALID_OBJECTCLASS = 300 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_INVALID_OBJECTCLASS_50", 50); 301 302 /** 303 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server access logger: %s 304 */ 305 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_LOGGER_INVALID_ACCESS_LOGGER_CLASS = 306 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_INVALID_ACCESS_LOGGER_CLASS_54", 54); 307 308 /** 309 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server error logger: %s 310 */ 311 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_LOGGER_INVALID_ERROR_LOGGER_CLASS = 312 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_INVALID_ERROR_LOGGER_CLASS_55", 55); 313 314 /** 315 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server debug logger: %s 316 */ 317 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_LOGGER_INVALID_DEBUG_LOGGER_CLASS = 318 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_INVALID_DEBUG_LOGGER_CLASS_56", 56); 319 320 /** 321 * Configuration attribute %s appears to contain multiple pending value sets 322 */ 323 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_MULTIPLE_PENDING_VALUE_SETS = 324 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_MULTIPLE_PENDING_VALUE_SETS_64", 64); 325 326 /** 327 * Configuration attribute %s appears to contain multiple active value sets 328 */ 329 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_MULTIPLE_ACTIVE_VALUE_SETS = 330 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_MULTIPLE_ACTIVE_VALUE_SETS_65", 65); 331 332 /** 333 * Configuration attribute %s does not contain an active value set 334 */ 335 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_NO_ACTIVE_VALUE_SET = 336 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_NO_ACTIVE_VALUE_SET_66", 66); 337 338 /** 339 * Unable to parse value %s for configuration attribute %s as an integer value because the element was of an invalid type (%s) 340 */ 341 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INT_INVALID_TYPE = 342 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_INVALID_TYPE_67", 67); 343 344 /** 345 * Unable to parse value for configuration attribute %s as a set of integer values because the array contained elements of an invalid type (%s) 346 */ 347 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_INT_INVALID_ARRAY_TYPE = 348 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_INVALID_ARRAY_TYPE_68", 68); 349 350 /** 351 * Unable to parse value %s for configuration attribute %s as a string value: %s 352 */ 353 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INVALID_STRING_VALUE = 354 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_STRING_VALUE_69", 69); 355 356 /** 357 * Unable to parse value %s for configuration attribute %s as a string value because the element was of an invalid type (%s) 358 */ 359 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_STRING_INVALID_TYPE = 360 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_STRING_INVALID_TYPE_70", 70); 361 362 /** 363 * Unable to parse value for configuration attribute %s as a set of string values because the array contained elements of an invalid type (%s) 364 */ 365 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_STRING_INVALID_ARRAY_TYPE = 366 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_STRING_INVALID_ARRAY_TYPE_71", 71); 367 368 /** 369 * Unable to parse value %s for configuration attribute %s as an integer with unit value because the element was of an invalid type (%s) 370 */ 371 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INT_WITH_UNIT_INVALID_TYPE = 372 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INT_WITH_UNIT_INVALID_TYPE_72", 72); 373 374 /** 375 * Configuration entry %s does not contain attribute %s (or that attribute exists but is not accessible using JMX) 376 */ 377 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_JMX_ATTR_NO_ATTR = 378 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JMX_ATTR_NO_ATTR_74", 74); 379 380 /** 381 * There is no method %s for any invokable component registered with configuration entry %s 382 */ 383 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_JMX_NO_METHOD = 384 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JMX_NO_METHOD_78", 78); 385 386 /** 387 * The Directory Server could not register a JMX MBean for the component associated with configuration entry %s: %s 388 */ 389 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_JMX_CANNOT_REGISTER_MBEAN = 390 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JMX_CANNOT_REGISTER_MBEAN_83", 83); 391 392 /** 393 * An unexpected error occurred while trying to export the Directory Server configuration to LDIF: %s 394 */ 395 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_LDIF_WRITE_ERROR = 396 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LDIF_WRITE_ERROR_84", 84); 397 398 /** 399 * Worker thread "%s" has experienced too many repeated failures while attempting to retrieve the next operation from the work queue (%d failures experienced, maximum of %d failures allowed). This worker thread will be destroyed 400 */ 401 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_CONFIG_WORK_QUEUE_TOO_MANY_FAILURES = 402 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORK_QUEUE_TOO_MANY_FAILURES_94", 94); 403 404 /** 405 * A problem occurred while trying to create and start an instance of class %s to use as a monitor provider for the Directory Server work queue: %s. No monitor information will be available for the work queue 406 */ 407 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_WORK_QUEUE_CANNOT_CREATE_MONITOR = 408 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORK_QUEUE_CANNOT_CREATE_MONITOR_95", 95); 409 410 /** 411 * A null value was provided for DN configuration attribute %s 412 */ 413 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_DN_NULL = 414 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_DN_NULL_98", 98); 415 416 /** 417 * An error occurred while trying to parse value "%s" of attribute %s as a DN: %s 418 */ 419 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_DN_CANNOT_PARSE = 420 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_DN_CANNOT_PARSE_99", 99); 421 422 /** 423 * Unable to parse value %s for configuration attribute %s as a DN: %s 424 */ 425 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_INVALID_DN_VALUE = 426 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_INVALID_DN_VALUE_100", 100); 427 428 /** 429 * Unable to parse value %s for configuration attribute %s as a DN because the element was of an invalid type (%s) 430 */ 431 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ATTR_DN_INVALID_TYPE = 432 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_DN_INVALID_TYPE_101", 101); 433 434 /** 435 * Unable to parse value for configuration attribute %s as a set of DN values because the array contained elements of an invalid type (%s) 436 */ 437 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ATTR_DN_INVALID_ARRAY_TYPE = 438 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_DN_INVALID_ARRAY_TYPE_102", 102); 439 440 /** 441 * An unexpected error occurred while trying to register the configuration handler base DN "%s" as a private suffix with the Directory Server: %s 442 */ 443 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_CANNOT_REGISTER_AS_PRIVATE_SUFFIX = 444 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CANNOT_REGISTER_AS_PRIVATE_SUFFIX_103", 103); 445 446 /** 447 * An error occurred while trying to retrieve configuration entry cn=Backends,cn=config in order to initialize the Directory Server backends: %s 448 */ 449 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_BACKEND_CANNOT_GET_CONFIG_BASE = 450 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_CANNOT_GET_CONFIG_BASE_104", 104); 451 452 /** 453 * The entry cn=Backends,cn=config does not appear to exist in the Directory Server configuration. This is a required entry 454 */ 455 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_BACKEND_BASE_DOES_NOT_EXIST = 456 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_BASE_DOES_NOT_EXIST_105", 105); 457 458 /** 459 * An unexpected error occurred while interacting with backend configuration entry %s: %s 460 */ 461 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKEND_ERROR_INTERACTING_WITH_BACKEND_ENTRY = 462 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_ERROR_INTERACTING_WITH_BACKEND_ENTRY_107", 107); 463 464 /** 465 * Fully-qualified name of the Java class that should provide the core logic for this backend implementation. Changes to this configuration attribute will not take effect until the backend is disabled and re-enabled or the server is restarted 466 */ 467 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_CLASS = 468 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_CLASS_109", 109); 469 470 /** 471 * The backend defined in configuration entry %s is marked as disabled and therefore will not be used 472 */ 473 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_CONFIG_BACKEND_DISABLED = 474 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "INFO_CONFIG_BACKEND_DISABLED_111", 111); 475 476 /** 477 * An unexpected error occurred while attempting to determine whether the backend associated with configuration entry %s should be enabled or disabled: %s. It will be disabled 478 */ 479 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKEND_UNABLE_TO_DETERMINE_ENABLED_STATE = 480 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_UNABLE_TO_DETERMINE_ENABLED_STATE_112", 112); 481 482 /** 483 * The Directory Server was unable to load class %s and use it to create a backend instance as defined in configuration entry %s. The error that occurred was: %s. This backend will be disabled 484 */ 485 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_BACKEND_CANNOT_INSTANTIATE = 486 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_CANNOT_INSTANTIATE_115", 115); 487 488 /** 489 * An error occurred while trying to initialize a backend loaded from class %s with the information in configuration entry %s: %s. This backend will be disabled 490 */ 491 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_BACKEND_CANNOT_INITIALIZE = 492 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_CANNOT_INITIALIZE_116", 116); 493 494 /** 495 * The class %s specified in configuration entry %s does not contain a valid Directory Server backend implementation 496 */ 497 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKEND_CLASS_NOT_BACKEND = 498 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_CLASS_NOT_BACKEND_117", 117); 499 500 /** 501 * The requested change to configuration entry %s would cause the class for the associated backend to change from %s to %s. This change will not take effect until the backend is disabled and re-enabled, or until the Directory Server is restarted 502 */ 503 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> NOTE_CONFIG_BACKEND_ACTION_REQUIRED_TO_CHANGE_CLASS = 504 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_BACKEND_ACTION_REQUIRED_TO_CHANGE_CLASS_118", 118); 505 506 /** 507 * The backend defined in configuration entry %s has one or more subordinate backends. A backend may not be removed if it has subordinate backends 508 */ 509 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_CONFIG_BACKEND_CANNOT_REMOVE_BACKEND_WITH_SUBORDINATES = 510 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_BACKEND_CANNOT_REMOVE_BACKEND_WITH_SUBORDINATES_119", 119); 511 512 /** 513 * An error occurred while trying to initialize an instance of class %s as a monitor provider as defined in configuration entry %s: %s 514 */ 515 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_MONITOR_INITIALIZATION_FAILED = 516 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_MONITOR_INITIALIZATION_FAILED_140", 140); 517 518 /** 519 * An error occurred while trying to initialize a connection handler loaded from class %s with the information in configuration entry %s: %s. This connection handler will be disabled 520 */ 521 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_CONNHANDLER_CANNOT_INITIALIZE = 522 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CONNHANDLER_CANNOT_INITIALIZE_154", 154); 523 524 /** 525 * An error occurred while trying to initialize a matching rule loaded from class %s with the information in configuration entry %s: %s. This matching rule will be disabled 526 */ 527 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_SCHEMA_MR_CANNOT_INITIALIZE = 528 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_MR_CANNOT_INITIALIZE_172", 172); 529 530 /** 531 * The matching rule defined in configuration entry %s conflicts with another matching rule defined in the server configuration: %s. This matching rule will not be used 532 */ 533 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_MR_CONFLICTING_MR = 534 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_MR_CONFLICTING_MR_173", 173); 535 536 /** 537 * An error occurred while trying to initialize an attribute syntax loaded from class %s with the information in configuration entry %s: %s. This syntax will be disabled 538 */ 539 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_SCHEMA_SYNTAX_CANNOT_INITIALIZE = 540 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_SYNTAX_CANNOT_INITIALIZE_186", 186); 541 542 /** 543 * The attribute syntax defined in configuration entry %s conflicts with another syntax defined in the server configuration: %s. This attribute syntax will not be used 544 */ 545 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_SYNTAX_CONFLICTING_SYNTAX = 546 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_SYNTAX_CONFLICTING_SYNTAX_187", 187); 547 548 /** 549 * Unable to read the Directory Server schema definitions because the schema directory %s does not exist 550 */ 551 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_SCHEMA_NO_SCHEMA_DIR = 552 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_NO_SCHEMA_DIR_188", 188); 553 554 /** 555 * Unable to read the Directory Server schema definitions because the schema directory %s exists but is not a directory 556 */ 557 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_SCHEMA_DIR_NOT_DIRECTORY = 558 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_DIR_NOT_DIRECTORY_189", 189); 559 560 /** 561 * Unable to read the Directory Server schema definitions from directory %s because an unexpected error occurred while trying to list the files in that directory: %s 562 */ 563 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_SCHEMA_CANNOT_LIST_FILES = 564 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_CANNOT_LIST_FILES_190", 190); 565 566 /** 567 * Schema configuration file %s in directory %s cannot be parsed because an unexpected error occurred while trying to open the file for reading: %s 568 */ 569 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> WARN_CONFIG_SCHEMA_CANNOT_OPEN_FILE = 570 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_OPEN_FILE_191", 191); 571 572 /** 573 * Schema configuration file %s in directory %s cannot be parsed because an unexpected error occurred while trying to read its contents as an LDIF entry: %s 574 */ 575 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> WARN_CONFIG_SCHEMA_CANNOT_READ_LDIF_ENTRY = 576 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_READ_LDIF_ENTRY_192", 192); 577 578 /** 579 * Unable to parse an attribute type definition from schema configuration file %s: %s 580 */ 581 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_ATTR_TYPE = 582 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_ATTR_TYPE_193", 193); 583 584 /** 585 * An attribute type read from schema configuration file %s conflicts with another attribute type already read into the schema: %s. The later attribute type definition will be used 586 */ 587 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_ATTR_TYPE = 588 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_ATTR_TYPE_194", 194); 589 590 /** 591 * An objectclass read from schema configuration file %s conflicts with another objectclass already read into the schema: %s. The later objectclass definition will be used 592 */ 593 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_OC = 594 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_OC_195", 195); 595 596 /** 597 * An objectclass read from schema configuration file %s could not be parsed: %s 598 */ 599 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_OC = 600 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_OC_196", 196); 601 602 /** 603 * An unexpected error occurred that prevented the server from installing its default entry cache framework: %s 604 */ 605 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ENTRYCACHE_CANNOT_INSTALL_DEFAULT_CACHE = 606 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRYCACHE_CANNOT_INSTALL_DEFAULT_CACHE_200", 200); 607 608 /** 609 * The entry cache configuration entry "cn=Entry Caches,cn=config" does not exist in the Directory Server configuration. No entry cache will be available until this entry is created with a valid entry cache configuration 610 */ 611 public static final LocalizableMessageDescriptor.Arg0 WARN_CONFIG_ENTRYCACHE_NO_CONFIG_ENTRY = 612 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "WARN_CONFIG_ENTRYCACHE_NO_CONFIG_ENTRY_201", 201); 613 614 /** 615 * An error occurred while attempting to initialize an instance of class %s for use as the Directory Server entry cache: %s. As a result, the entry cache will be disabled 616 */ 617 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ENTRYCACHE_CANNOT_INITIALIZE_CACHE = 618 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRYCACHE_CANNOT_INITIALIZE_CACHE_202", 202); 619 620 /** 621 * The configuration for the entry cache defined in configuration entry %s was not acceptable: %s 622 */ 623 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ENTRYCACHE_CONFIG_NOT_ACCEPTABLE = 624 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRYCACHE_CONFIG_NOT_ACCEPTABLE_203", 203); 625 626 /** 627 * The configuration for the entry cache defined in configuration entry %s was not acceptable: the entry cache level %d is already in use 628 */ 629 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_CONFIG_ENTRYCACHE_CONFIG_LEVEL_NOT_ACCEPTABLE = 630 new LocalizableMessageDescriptor.Arg2<Object, Number>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRYCACHE_CONFIG_LEVEL_NOT_ACCEPTABLE_204", 204); 631 632 /** 633 * The configuration for the entry cache %s monitor provider was not available. As a result this monitor provider %s will not be enabled 634 */ 635 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_WARN_CONFIG_ENTRYCACHE_NO_MONITOR_CONFIG_ENTRY = 636 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "INFO_WARN_CONFIG_ENTRYCACHE_NO_MONITOR_CONFIG_ENTRY_205", 205); 637 638 /** 639 * The configuration for the entry cache %s monitor provider was disabled. As a result the monitor provider %s will not be enabled 640 */ 641 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_WARN_CONFIG_ENTRYCACHE_MONITOR_CONFIG_DISABLED = 642 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "INFO_WARN_CONFIG_ENTRYCACHE_MONITOR_CONFIG_DISABLED_206", 206); 643 644 /** 645 * An unexpected error occurred while attempting to remove entry %s as a child of configuration entry %s: %s 646 */ 647 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ENTRY_CANNOT_REMOVE_CHILD = 648 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ENTRY_CANNOT_REMOVE_CHILD_215", 215); 649 650 /** 651 * Unable to parse a name form definition from schema configuration file %s: %s 652 */ 653 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_NAME_FORM = 654 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_NAME_FORM_216", 216); 655 656 /** 657 * A name form read from schema configuration file %s conflicts with another name form already read into the schema: %s. The later name form definition will be used 658 */ 659 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_NAME_FORM = 660 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_NAME_FORM_217", 217); 661 662 /** 663 * Unable to parse a DIT content rule definition from schema configuration file %s: %s 664 */ 665 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_DCR = 666 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_DCR_218", 218); 667 668 /** 669 * A DIT content rule read from schema configuration file %s conflicts with another DIT content rule already read into the schema: %s. The later DIT content rule definition will be used 670 */ 671 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_DCR = 672 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_DCR_219", 219); 673 674 /** 675 * Unable to parse a DIT structure rule definition from schema configuration file %s: %s 676 */ 677 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_DSR = 678 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_DSR_220", 220); 679 680 /** 681 * A DIT structure rule read from schema configuration file %s conflicts with another DIT structure rule already read into the schema: %s. The later DIT structure rule definition will be used 682 */ 683 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_DSR = 684 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_DSR_221", 221); 685 686 /** 687 * Unable to parse a matching rule use definition from schema configuration file %s: %s 688 */ 689 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_MRU = 690 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_MRU_222", 222); 691 692 /** 693 * A matching rule use read from schema configuration file %s conflicts with another matching rule use already read into the schema: %s. The later matching rule use definition will be used 694 */ 695 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_MRU = 696 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_MRU_223", 223); 697 698 /** 699 * Configuration attribute %s is read-only and its values may not be altered 700 */ 701 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ATTR_READ_ONLY = 702 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ATTR_READ_ONLY_228", 228); 703 704 /** 705 * An error occurred while attempting to initialize an instance of class %s as a Directory Server plugin using the information in configuration entry %s: %s. This plugin will be disabled 706 */ 707 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_PLUGIN_CANNOT_INITIALIZE = 708 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PLUGIN_CANNOT_INITIALIZE_245", 245); 709 710 /** 711 * Class %s specified in configuration entry %s does not contain a valid extended operation handler implementation: %s 712 */ 713 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_EXTOP_INVALID_CLASS = 714 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_EXTOP_INVALID_CLASS_256", 256); 715 716 /** 717 * An error occurred while trying to initialize an instance of class %s as an extended operation handler as defined in configuration entry %s: %s 718 */ 719 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_EXTOP_INITIALIZATION_FAILED = 720 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_EXTOP_INITIALIZATION_FAILED_261", 261); 721 722 /** 723 * An error occurred while trying to initialize an instance of class %s as a SASL mechanism handler as defined in configuration entry %s: %s 724 */ 725 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_SASL_INITIALIZATION_FAILED = 726 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SASL_INITIALIZATION_FAILED_277", 277); 727 728 /** 729 * Entry %s cannot be added to the Directory Server configuration because another configuration entry already exists with that DN 730 */ 731 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_ADD_ALREADY_EXISTS = 732 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_ALREADY_EXISTS_280", 280); 733 734 /** 735 * Entry %s cannot be added to the Directory Server configuration because that DN does not have a parent 736 */ 737 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_ADD_NO_PARENT_DN = 738 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_NO_PARENT_DN_281", 281); 739 740 /** 741 * Entry %s cannot be added to the Directory Server configuration because its parent entry %s does not exist 742 */ 743 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_ADD_NO_PARENT = 744 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_NO_PARENT_282", 282); 745 746 /** 747 * The Directory Server is unwilling to add configuration entry %s because one of the add listeners registered with the parent entry %s rejected this change with the message: %s 748 */ 749 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_ADD_REJECTED_BY_LISTENER = 750 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_REJECTED_BY_LISTENER_283", 283); 751 752 /** 753 * An unexpected error occurred while attempting to add configuration entry %s as a child of entry %s: %s 754 */ 755 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_ADD_FAILED = 756 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_FAILED_284", 284); 757 758 /** 759 * Entry %s cannot be removed from the Directory Server configuration because the specified entry does not exist 760 */ 761 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_DELETE_NO_SUCH_ENTRY = 762 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_NO_SUCH_ENTRY_285", 285); 763 764 /** 765 * Entry %s cannot be removed from the Directory Server configuration because the specified entry has one or more subordinate entries 766 */ 767 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_DELETE_HAS_CHILDREN = 768 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_HAS_CHILDREN_286", 286); 769 770 /** 771 * Entry %s cannot be removed from the Directory Server configuration because the entry does not have a parent and removing the configuration root entry is not allowed 772 */ 773 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_DELETE_NO_PARENT = 774 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_NO_PARENT_287", 287); 775 776 /** 777 * Entry %s cannot be removed from the Directory Server configuration because one of the delete listeners registered with the parent entry %s rejected this change with the message: %s 778 */ 779 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_DELETE_REJECTED = 780 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_REJECTED_288", 288); 781 782 /** 783 * An unexpected error occurred while attempting to remove configuration entry %s as a child of entry %s: %s 784 */ 785 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_DELETE_FAILED = 786 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_FAILED_289", 289); 787 788 /** 789 * Entry %s cannot be modified because the specified entry does not exist 790 */ 791 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_MODIFY_NO_SUCH_ENTRY = 792 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_NO_SUCH_ENTRY_290", 290); 793 794 /** 795 * Entry %s cannot be modified because one of the configuration change listeners registered for that entry rejected the change: %s 796 */ 797 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_MODIFY_REJECTED_BY_CHANGE_LISTENER = 798 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_REJECTED_BY_CHANGE_LISTENER_291", 291); 799 800 /** 801 * The search operation cannot be processed because base entry %s does not exist 802 */ 803 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_SEARCH_NO_SUCH_BASE = 804 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_SEARCH_NO_SUCH_BASE_293", 293); 805 806 /** 807 * The search operation cannot be processed because the specified search scope %s is invalid 808 */ 809 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_SEARCH_INVALID_SCOPE = 810 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_SEARCH_INVALID_SCOPE_294", 294); 811 812 /** 813 * An error occurred while attempting to export the new Directory Server configuration to file %s: %s 814 */ 815 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_WRITE_CANNOT_EXPORT_NEW_CONFIG = 816 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_WRITE_CANNOT_EXPORT_NEW_CONFIG_300", 300); 817 818 /** 819 * An error occurred while attempting to rename the new Directory Server configuration from file %s to %s: %s 820 */ 821 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_FILE_WRITE_CANNOT_RENAME_NEW_CONFIG = 822 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_WRITE_CANNOT_RENAME_NEW_CONFIG_301", 301); 823 824 /** 825 * Modify DN operations are not allowed in the Directory Server configuration 826 */ 827 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_MODDN_NOT_ALLOWED = 828 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODDN_NOT_ALLOWED_302", 302); 829 830 /** 831 * Set of base DNs that should be used for this backend. It is up to the backend implementation as to whether changes to this attribute will automatically take effect 832 */ 833 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_BASE_DNS = 834 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_BASE_DNS_305", 305); 835 836 /** 837 * Indicates whether the Directory Server key manager provider should be enabled. A key manager provider is required for operations that require access to a key manager (e.g., communication over SSL). Changes to this configuration attribute will take effect immediately, but will only impact future attempts to access the key manager 838 */ 839 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_KEYMANAGER_DESCRIPTION_ENABLED = 840 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_KEYMANAGER_DESCRIPTION_ENABLED_313", 313); 841 842 /** 843 * Indicates whether the Directory Server trust manager provider should be enabled. A trust manager provider is required for operations that require access to a trust manager (e.g., communication over SSL). Changes to this configuration attribute will take effect immediately, but will only impact future attempts to access the trust manager 844 */ 845 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_TRUSTMANAGER_DESCRIPTION_ENABLED = 846 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_TRUSTMANAGER_DESCRIPTION_ENABLED_328", 328); 847 848 /** 849 * An error occurred while trying to initialize an instance of class %s as a password storage scheme as defined in configuration entry %s: %s 850 */ 851 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_PWSCHEME_INITIALIZATION_FAILED = 852 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWSCHEME_INITIALIZATION_FAILED_376", 376); 853 854 /** 855 * Unable to add a new password storage scheme entry with DN %s because there is already a storage scheme registered with that DN 856 */ 857 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_PWSCHEME_EXISTS = 858 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWSCHEME_EXISTS_377", 377); 859 860 /** 861 * Unique identifier for this backend. Changes to this configuration attribute will not take effect until the backend is disabled and re-enabled or the server is restarted 862 */ 863 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_BACKEND_ID = 864 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_BACKEND_ATTR_DESCRIPTION_BACKEND_ID_382", 382); 865 866 /** 867 * The backend defined in configuration entry %s has a backend ID of %s that conflicts with the backend ID for another backend in the server. The backend will be disabled 868 */ 869 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_BACKEND_DUPLICATE_BACKEND_ID = 870 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_BACKEND_DUPLICATE_BACKEND_ID_384", 384); 871 872 /** 873 * An error occurred while attempting to obtain the %s MAC provider to create the signed hash for the backup: %s 874 */ 875 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_CANNOT_GET_MAC = 876 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_GET_MAC_386", 386); 877 878 /** 879 * An error occurred while attempting to obtain the %s message digest to create the hash for the backup: %s 880 */ 881 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_CANNOT_GET_DIGEST = 882 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_GET_DIGEST_387", 387); 883 884 /** 885 * An error occurred while trying to create the config archive file %s in directory %s: %s 886 */ 887 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_BACKUP_CANNOT_CREATE_ARCHIVE_FILE = 888 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_CREATE_ARCHIVE_FILE_388", 388); 889 890 /** 891 * An error occurred while attempting to obtain the cipher to use to encrypt the backup: %s 892 */ 893 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_BACKUP_CANNOT_GET_CIPHER = 894 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_GET_CIPHER_389", 389); 895 896 /** 897 * %s config backup %s 898 */ 899 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_ZIP_COMMENT = 900 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_ZIP_COMMENT_390", 390); 901 902 /** 903 * An error occurred while attempting to determine the path to the Directory Server configuration file so that it could be archived: %s 904 */ 905 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_BACKUP_CANNOT_DETERMINE_CONFIG_FILE_LOCATION = 906 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_DETERMINE_CONFIG_FILE_LOCATION_391", 391); 907 908 /** 909 * An error occurred while attempting to back up configuration file %s: %s 910 */ 911 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_CANNOT_BACKUP_CONFIG_FILE = 912 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_BACKUP_CONFIG_FILE_392", 392); 913 914 /** 915 * An error occurred while attempting to back up the archived previous configurations from file %s: %s 916 */ 917 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_CANNOT_BACKUP_ARCHIVED_CONFIGS = 918 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_BACKUP_ARCHIVED_CONFIGS_393", 393); 919 920 /** 921 * An error occurred while trying to close the config archive file %s in directory %s: %s 922 */ 923 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_BACKUP_CANNOT_CLOSE_ZIP_STREAM = 924 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_CLOSE_ZIP_STREAM_394", 394); 925 926 /** 927 * An error occurred while attempting to update the backup descriptor file %s with information about the configuration backup: %s 928 */ 929 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR = 930 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR_395", 395); 931 932 /** 933 * Unable to restore or verify configuration backup %s in directory %s because no such backup exists 934 */ 935 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_NO_SUCH_BACKUP = 936 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_NO_SUCH_BACKUP_396", 396); 937 938 /** 939 * Unable to restore or verify configuration backup %s in directory %s because the archive filename could not be determined 940 */ 941 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_NO_BACKUP_FILE = 942 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_NO_BACKUP_FILE_397", 397); 943 944 /** 945 * Unable to restore or verify configuration backup %s because the specified archive file %s does not exist 946 */ 947 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_NO_SUCH_FILE = 948 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_NO_SUCH_FILE_398", 398); 949 950 /** 951 * Unable to restore or verify configuration backup %s because an error occurred while trying to determine whether backup archive %s exists: %s 952 */ 953 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_CHECK_FOR_ARCHIVE = 954 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_CHECK_FOR_ARCHIVE_399", 399); 955 956 /** 957 * Unable to restore or verify configuration backup %s because an unsigned hash of this backup is available but the server cannot determine the digest algorithm used to generate this hash 958 */ 959 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_UNKNOWN_DIGEST = 960 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_UNKNOWN_DIGEST_400", 400); 961 962 /** 963 * Unable to restore or verify configuration backup %s because it has an unsigned hash that uses an unknown or unsupported digest algorithm of %s 964 */ 965 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_CANNOT_GET_DIGEST = 966 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_GET_DIGEST_401", 401); 967 968 /** 969 * Unable to restore or verify configuration backup %s because a signed hash of this backup is available but the server cannot determine the MAC algorithm used to generate this hash 970 */ 971 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_UNKNOWN_MAC = 972 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_UNKNOWN_MAC_402", 402); 973 974 /** 975 * Unable to restore or verify configuration backup %s because it has a signed hash that uses an unknown or unsupported MAC algorithm of %s 976 */ 977 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_CANNOT_GET_MAC = 978 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_GET_MAC_403", 403); 979 980 /** 981 * Unable to restore or verify configuration backup %s because an error occurred while attempting to open the backup archive file %s: %s 982 */ 983 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_OPEN_BACKUP_FILE = 984 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_OPEN_BACKUP_FILE_404", 404); 985 986 /** 987 * Unable to restore or verify configuration backup %s because it is encrypted using an unknown or unsupported cipher: %s 988 */ 989 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RESTORE_CANNOT_GET_CIPHER = 990 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_GET_CIPHER_406", 406); 991 992 /** 993 * Unable to restore configuration backup %s because an error occurred while attempting to temporarily back up the current configuration files from %s to %s: %s 994 */ 995 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_BACKUP_EXISTING_CONFIG = 996 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_BACKUP_EXISTING_CONFIG_407", 407); 997 998 /** 999 * An error occurred that prevented the configuration backup from being properly restored. However, the original configuration files that were in place before the start of the restore process have been preserved and are now in their original location of %s 1000 */ 1001 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_CONFIG_RESTORE_RESTORED_OLD_CONFIG = 1002 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_RESTORE_RESTORED_OLD_CONFIG_408", 408); 1003 1004 /** 1005 * An error occurred that prevented the configuration backup from being properly restored. The original configuration files that were in place before the start of the restore process have been preserved and are contained in the %s directory 1006 */ 1007 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_CANNOT_RESTORE_OLD_CONFIG = 1008 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_RESTORE_OLD_CONFIG_409", 409); 1009 1010 /** 1011 * Unable to restore configuration backup %s because an error occurred while attempting to create a new empty directory %s into which the files should be restored: %s 1012 */ 1013 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_CREATE_CONFIG_DIRECTORY = 1014 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_CREATE_CONFIG_DIRECTORY_410", 410); 1015 1016 /** 1017 * An error occurred that prevented the configuration backup from being properly restored. The original configuration files that were in place before the start of the restore process have been preserved in the %s directory 1018 */ 1019 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_OLD_CONFIG_SAVED = 1020 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_OLD_CONFIG_SAVED_411", 411); 1021 1022 /** 1023 * Unable to restore or verify configuration backup %s because an error occurred while trying to read the next entry from the archive file %s: %s 1024 */ 1025 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_GET_ZIP_ENTRY = 1026 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_GET_ZIP_ENTRY_412", 412); 1027 1028 /** 1029 * Unable to restore configuration backup %s because an error occurred while trying to recreate file %s: %s 1030 */ 1031 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_CREATE_FILE = 1032 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_CREATE_FILE_413", 413); 1033 1034 /** 1035 * Unable to restore or verify configuration backup %s because an error occurred while processing archived file %s: %s 1036 */ 1037 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_CANNOT_PROCESS_ARCHIVE_FILE = 1038 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_CANNOT_PROCESS_ARCHIVE_FILE_414", 414); 1039 1040 /** 1041 * Unable to restore or verify configuration backup %s because an unexpected error occurred while trying to close the archive file %s: %s 1042 */ 1043 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RESTORE_ERROR_ON_ZIP_STREAM_CLOSE = 1044 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_ERROR_ON_ZIP_STREAM_CLOSE_415", 415); 1045 1046 /** 1047 * The message digest calculated from the backup archive matches the digest stored with the backup information 1048 */ 1049 public static final LocalizableMessageDescriptor.Arg0 NOTE_CONFIG_RESTORE_UNSIGNED_HASH_VALID = 1050 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_RESTORE_UNSIGNED_HASH_VALID_416", 416); 1051 1052 /** 1053 * Unable to restore or verify configuration backup %s because the message digest calculated from the backup archive does not match the digest stored with the backup information 1054 */ 1055 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_UNSIGNED_HASH_INVALID = 1056 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_UNSIGNED_HASH_INVALID_417", 417); 1057 1058 /** 1059 * The signed digest calculated from the backup archive matches the signature stored with the backup information 1060 */ 1061 public static final LocalizableMessageDescriptor.Arg0 NOTE_CONFIG_RESTORE_SIGNED_HASH_VALID = 1062 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_RESTORE_SIGNED_HASH_VALID_418", 418); 1063 1064 /** 1065 * Unable to restore or verify configuration backup %s because the signed digest calculated from the backup archive does not match the signature stored with the backup information 1066 */ 1067 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_RESTORE_SIGNED_HASH_INVALID = 1068 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RESTORE_SIGNED_HASH_INVALID_419", 419); 1069 1070 /** 1071 * All tests performed on configuration backup %s from directory %s show that the archive appears to be valid 1072 */ 1073 public static final LocalizableMessageDescriptor.Arg2<Object, Object> NOTE_CONFIG_RESTORE_VERIFY_SUCCESSFUL = 1074 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_RESTORE_VERIFY_SUCCESSFUL_420", 420); 1075 1076 /** 1077 * Configuration backup %s was successfully restored from the archive in directory %s 1078 */ 1079 public static final LocalizableMessageDescriptor.Arg2<Object, Object> NOTE_CONFIG_RESTORE_SUCCESSFUL = 1080 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_RESTORE_SUCCESSFUL_421", 421); 1081 1082 /** 1083 * The Directory Server was unable to acquire a shared lock for backend %s: %s. This generally means that the backend is in use by a process that requires an exclusive lock (e.g., importing from LDIF or restoring a backup). This backend will be disabled 1084 */ 1085 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_BACKEND_CANNOT_ACQUIRE_SHARED_LOCK = 1086 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_CANNOT_ACQUIRE_SHARED_LOCK_422", 422); 1087 1088 /** 1089 * An error occurred while attempting to release a shared lock for backend %s: %s. This may interfere with operations that require exclusive access, including LDIF import and restoring a backup 1090 */ 1091 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_BACKEND_CANNOT_RELEASE_SHARED_LOCK = 1092 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_BACKEND_CANNOT_RELEASE_SHARED_LOCK_423", 423); 1093 1094 /** 1095 * This file contains the primary Directory Server configuration. It must not be directly edited while the server is online. The server configuration should only be managed using the administration utilities provided with the Directory Server 1096 */ 1097 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_FILE_HEADER = 1098 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_FILE_HEADER_424", 424); 1099 1100 /** 1101 * An error occurred while trying to initialize an instance of class %s as an identity mapper as defined in configuration entry %s: %s 1102 */ 1103 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_IDMAPPER_INITIALIZATION_FAILED = 1104 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_IDMAPPER_INITIALIZATION_FAILED_442", 442); 1105 1106 /** 1107 * The Directory Server does not have any identity mapper configured for use in conjunction with proxied authorization V2 operations. The Directory Server will not be able to process requests containing the proxied authorization control with a username-based authorization ID 1108 */ 1109 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_IDMAPPER_NO_PROXY_MAPPER_DN = 1110 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_IDMAPPER_NO_PROXY_MAPPER_DN_448", 448); 1111 1112 /** 1113 * The configured proxied authorization identity mapper DN %s does not refer to an active identity mapper. The Directory Server will not be able to process requests containing the proxied authorization control with a username-based authorization ID 1114 */ 1115 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_IDMAPPER_INVALID_PROXY_MAPPER_DN = 1116 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_IDMAPPER_INVALID_PROXY_MAPPER_DN_449", 449); 1117 1118 /** 1119 * An error occurred while attempting to load class %s referenced in synchronization provider configuration entry %s: %s 1120 */ 1121 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_SYNCH_UNABLE_TO_LOAD_PROVIDER_CLASS = 1122 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SYNCH_UNABLE_TO_LOAD_PROVIDER_CLASS_463", 463); 1123 1124 /** 1125 * An error occurred while attempting to instantiate class %s referenced in synchronization provider configuration entry %s: %s 1126 */ 1127 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_SYNCH_UNABLE_TO_INSTANTIATE_PROVIDER = 1128 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SYNCH_UNABLE_TO_INSTANTIATE_PROVIDER_464", 464); 1129 1130 /** 1131 * An error occurred while attempting to initialize the Directory Server synchronization provider referenced in configuration entry %s: %s 1132 */ 1133 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_SYNCH_ERROR_INITIALIZING_PROVIDER = 1134 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SYNCH_ERROR_INITIALIZING_PROVIDER_465", 465); 1135 1136 /** 1137 * An error occurred while trying to initialize an instance of class %s as a password validator as defined in configuration entry %s: %s 1138 */ 1139 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_PWVALIDATOR_INITIALIZATION_FAILED = 1140 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWVALIDATOR_INITIALIZATION_FAILED_489", 489); 1141 1142 /** 1143 * An error occurred while trying to initialize an instance of class %s as a password generator as defined in configuration entry %s: %s 1144 */ 1145 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_PWGENERATOR_INITIALIZATION_FAILED = 1146 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWGENERATOR_INITIALIZATION_FAILED_505", 505); 1147 1148 /** 1149 * No password policies have been defined below the cn=Password Policies,cn=config entry in the Directory Server configuration. At least one password policy configuration must be defined 1150 */ 1151 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_PWPOLICY_NO_POLICIES = 1152 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_NO_POLICIES_514", 514); 1153 1154 /** 1155 * The password policy defined in configuration entry %s is invalid: %s 1156 */ 1157 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_PWPOLICY_INVALID_POLICY_CONFIG = 1158 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_INVALID_POLICY_CONFIG_515", 515); 1159 1160 /** 1161 * The Directory Server default password policy is defined as %s, but that entry does not exist or is not below the password policy configuration base cn=Password Policies,cn=config 1162 */ 1163 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_PWPOLICY_MISSING_DEFAULT_POLICY = 1164 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_MISSING_DEFAULT_POLICY_516", 516); 1165 1166 /** 1167 * The specified entry %s is currently defined as the configuration entry for the default password policy. The default password policy configuration entry may not be removed 1168 */ 1169 public static final LocalizableMessageDescriptor.Arg1<Object> WARN_CONFIG_PWPOLICY_CANNOT_DELETE_DEFAULT_POLICY = 1170 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_PWPOLICY_CANNOT_DELETE_DEFAULT_POLICY_517", 517); 1171 1172 /** 1173 * Password policy entry %s has been removed from the Directory Server configuration. Any user entries that explicitly reference this password policy will no longer be allowed to authenticate 1174 */ 1175 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_CONFIG_PWPOLICY_REMOVED_POLICY = 1176 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "INFO_CONFIG_PWPOLICY_REMOVED_POLICY_518", 518); 1177 1178 /** 1179 * Access control has been disabled 1180 */ 1181 public static final LocalizableMessageDescriptor.Arg0 WARN_CONFIG_AUTHZ_DISABLED = 1182 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "WARN_CONFIG_AUTHZ_DISABLED_525", 525); 1183 1184 /** 1185 * Access control has been enabled and will use the %s implementation 1186 */ 1187 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_CONFIG_AUTHZ_ENABLED = 1188 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_AUTHZ_ENABLED_526", 526); 1189 1190 /** 1191 * An error occurred while attempting to instantiate class %s referenced in the access control configuration entry %s: %s 1192 */ 1193 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_AUTHZ_UNABLE_TO_INSTANTIATE_HANDLER = 1194 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_AUTHZ_UNABLE_TO_INSTANTIATE_HANDLER_533", 533); 1195 1196 /** 1197 * Specifies one or more alternate bind DNs that may be used to authenticate as the associated root DN, in addition to the actual DN of the root DN configuration entry. Alternate bind DNs must not conflict with the DNs of any other entries in the directory, nor can they conflict with other alternate bind DNs configured for other root DNs. Changes to this configuration attribute will take effect immediately 1198 */ 1199 public static final LocalizableMessageDescriptor.Arg0 INFO_CONFIG_ROOTDN_DESCRIPTION_ALTERNATE_BIND_DN = 1200 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "INFO_CONFIG_ROOTDN_DESCRIPTION_ALTERNATE_BIND_DN_540", 540); 1201 1202 /** 1203 * Unable to register "%s" as an alternate bind DN for user "%s" because it is already registered as an alternate bind DN for root user "%s" 1204 */ 1205 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ROOTDN_CONFLICTING_MAPPING = 1206 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ROOTDN_CONFLICTING_MAPPING_541", 541); 1207 1208 /** 1209 * An error occurred while trying to initialize an instance of class %s as an account status notification handler as defined in configuration entry %s: %s 1210 */ 1211 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ACCTNOTHANDLER_INITIALIZATION_FAILED = 1212 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ACCTNOTHANDLER_INITIALIZATION_FAILED_558", 558); 1213 1214 /** 1215 * Unable to add a new account status notification handler entry with DN %s because there is already a notification handler registered with that DN 1216 */ 1217 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ACCTNOTHANDLER_EXISTS = 1218 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ACCTNOTHANDLER_EXISTS_559", 559); 1219 1220 /** 1221 * An error occurred while attempting to apply the changes contained in file %s to the server configuration at startup: %s 1222 */ 1223 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_UNABLE_TO_APPLY_STARTUP_CHANGES = 1224 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_UNABLE_TO_APPLY_STARTUP_CHANGES_563", 563); 1225 1226 /** 1227 * Unable to apply a change at server startup: %s 1228 */ 1229 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_ERROR_APPLYING_STARTUP_CHANGE = 1230 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ERROR_APPLYING_STARTUP_CHANGE_564", 564); 1231 1232 /** 1233 * One or more errors occurred while applying changes on server startup 1234 */ 1235 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_UNABLE_TO_APPLY_CHANGES_FILE = 1236 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_UNABLE_TO_APPLY_CHANGES_FILE_565", 565); 1237 1238 /** 1239 * Configuration entry %s does not contain a valid value for configuration attribute ds-cfg-db-directory-permissions (It should be an UNIX permission mode in three-digit octal notation.) 1240 */ 1241 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_BACKEND_MODE_INVALID = 1242 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_MODE_INVALID_567", 567); 1243 1244 /** 1245 * Invalid UNIX file permissions %s does not allow read and write access to the backend database directory by the backend 1246 */ 1247 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_BACKEND_INSANE_MODE = 1248 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_BACKEND_INSANE_MODE_568", 568); 1249 1250 /** 1251 * No default password policy is configured for the Directory Server. The default password policy must be specified by the ds-cfg-default-password-policy attribute in the cn=config entry 1252 */ 1253 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_PWPOLICY_NO_DEFAULT_POLICY = 1254 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_NO_DEFAULT_POLICY_571", 571); 1255 1256 /** 1257 * An error occurred while attempting to register backend %s with the Directory Server: %s 1258 */ 1259 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_BACKEND_CANNOT_REGISTER_BACKEND = 1260 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_BACKEND_CANNOT_REGISTER_BACKEND_572", 572); 1261 1262 /** 1263 * An error occurred while trying to create the configuration archive directory %s 1264 */ 1265 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_CANNOT_CREATE_ARCHIVE_DIR_NO_REASON = 1266 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CANNOT_CREATE_ARCHIVE_DIR_NO_REASON_573", 573); 1267 1268 /** 1269 * An error occurred while trying to create the configuration archive directory %s: %s 1270 */ 1271 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_FILE_CANNOT_CREATE_ARCHIVE_DIR = 1272 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CANNOT_CREATE_ARCHIVE_DIR_574", 574); 1273 1274 /** 1275 * An error occurred while trying to write the current configuration to the configuration archive: %s 1276 */ 1277 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_CANNOT_WRITE_CONFIG_ARCHIVE = 1278 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_CANNOT_WRITE_CONFIG_ARCHIVE_575", 575); 1279 1280 /** 1281 * An error occurred while trying to initialize an instance of class %s as a group implementation as in configuration entry %s: %s 1282 */ 1283 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_GROUP_INITIALIZATION_FAILED = 1284 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_GROUP_INITIALIZATION_FAILED_591", 591); 1285 1286 /** 1287 * You do not have sufficient privileges to perform add operations in the Directory Server configuration 1288 */ 1289 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_ADD_INSUFFICIENT_PRIVILEGES = 1290 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_INSUFFICIENT_PRIVILEGES_598", 598); 1291 1292 /** 1293 * You do not have sufficient privileges to perform delete operations in the Directory Server configuration 1294 */ 1295 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_DELETE_INSUFFICIENT_PRIVILEGES = 1296 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_INSUFFICIENT_PRIVILEGES_599", 599); 1297 1298 /** 1299 * You do not have sufficient privileges to perform modify operations in the Directory Server configuration 1300 */ 1301 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_MODIFY_INSUFFICIENT_PRIVILEGES = 1302 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_INSUFFICIENT_PRIVILEGES_600", 600); 1303 1304 /** 1305 * You do not have sufficient privileges to perform modify DN operations in the Directory Server configuration 1306 */ 1307 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_MODDN_INSUFFICIENT_PRIVILEGES = 1308 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODDN_INSUFFICIENT_PRIVILEGES_601", 601); 1309 1310 /** 1311 * You do not have sufficient privileges to perform search operations in the Directory Server configuration 1312 */ 1313 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_SEARCH_INSUFFICIENT_PRIVILEGES = 1314 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_SEARCH_INSUFFICIENT_PRIVILEGES_602", 602); 1315 1316 /** 1317 * You do not have sufficient privileges to change the set of default root privileges 1318 */ 1319 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_FILE_MODIFY_PRIVS_INSUFFICIENT_PRIVILEGES = 1320 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_PRIVS_INSUFFICIENT_PRIVILEGES_603", 603); 1321 1322 /** 1323 * An error occurred while trying to initialize an instance of class %s as a certificate mapper as defined in configuration entry %s: %s 1324 */ 1325 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_CERTMAPPER_INITIALIZATION_FAILED = 1326 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CERTMAPPER_INITIALIZATION_FAILED_614", 614); 1327 1328 /** 1329 * An error occurred while attempting to retrieve the key manager provider base entry cn=Key Manager Providers,cn=config from the Directory Server configuration: %s 1330 */ 1331 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_KEYMANAGER_CANNOT_GET_BASE = 1332 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_KEYMANAGER_CANNOT_GET_BASE_617", 617); 1333 1334 /** 1335 * An error occurred while trying to initialize an instance of class %s as a key manager provider as defined in configuration entry %s: %s 1336 */ 1337 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_KEYMANAGER_INITIALIZATION_FAILED = 1338 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_KEYMANAGER_INITIALIZATION_FAILED_627", 627); 1339 1340 /** 1341 * An error occurred while attempting to retrieve the trust manager provider base entry cn=Trust Manager Providers,cn=config from the Directory Server configuration: %s 1342 */ 1343 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_TRUSTMANAGER_CANNOT_GET_BASE = 1344 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_TRUSTMANAGER_CANNOT_GET_BASE_630", 630); 1345 1346 /** 1347 * An error occurred while trying to initialize an instance of class %s as a trust manager provider as defined in configuration entry %s: %s 1348 */ 1349 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_TRUSTMANAGER_INITIALIZATION_FAILED = 1350 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_TRUSTMANAGER_INITIALIZATION_FAILED_640", 640); 1351 1352 /** 1353 * Unable to retrieve JMX attribute %s associated with configuration entry %s: %s 1354 */ 1355 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_JMX_CANNOT_GET_ATTRIBUTE = 1356 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JMX_CANNOT_GET_ATTRIBUTE_643", 643); 1357 1358 /** 1359 * %s.%s returned a result of null for entry %s 1360 */ 1361 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_CHANGE_NO_RESULT = 1362 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CHANGE_NO_RESULT_645", 645); 1363 1364 /** 1365 * %s.%s failed for entry %s: result code=%s, admin action required=%b, messages="%s" 1366 */ 1367 public static final LocalizableMessageDescriptor.Arg6<Object, Object, Object, Object, Boolean, Object> ERR_CONFIG_CHANGE_RESULT_ERROR = 1368 new LocalizableMessageDescriptor.Arg6<Object, Object, Object, Object, Boolean, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CHANGE_RESULT_ERROR_646", 646); 1369 1370 /** 1371 * %s.%s indicated that administrative action is required for entry %s: messages="%s" 1372 */ 1373 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> WARN_CONFIG_CHANGE_RESULT_ACTION_REQUIRED = 1374 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_CHANGE_RESULT_ACTION_REQUIRED_647", 647); 1375 1376 /** 1377 * %s.%s succeeded but generated the following messages for entry %s: %s 1378 */ 1379 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> INFO_CONFIG_CHANGE_RESULT_MESSAGES = 1380 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(ConfigMessages.class, RESOURCE, "INFO_CONFIG_CHANGE_RESULT_MESSAGES_648", 648); 1381 1382 /** 1383 * Unable to parse value "%s" from config entry "%s" as a valid search filter: %s 1384 */ 1385 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_VATTR_INVALID_SEARCH_FILTER = 1386 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_VATTR_INVALID_SEARCH_FILTER_649", 649); 1387 1388 /** 1389 * An error occurred while trying to load an instance of class %s referenced in configuration entry %s as a virtual attribute provider: %s 1390 */ 1391 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_VATTR_INITIALIZATION_FAILED = 1392 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_VATTR_INITIALIZATION_FAILED_650", 650); 1393 1394 /** 1395 * The virtual attribute configuration in entry "%s" is not valid because attribute type %s is single-valued but provider %s may generate multiple values 1396 */ 1397 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_VATTR_SV_TYPE_WITH_MV_PROVIDER = 1398 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_VATTR_SV_TYPE_WITH_MV_PROVIDER_651", 651); 1399 1400 /** 1401 * The virtual attribute configuration in entry "%s" is not valid because attribute type %s is single-valued but the conflict behavior is configured to merge real and virtual values 1402 */ 1403 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_VATTR_SV_TYPE_WITH_MERGE_VALUES = 1404 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_VATTR_SV_TYPE_WITH_MERGE_VALUES_652", 652); 1405 1406 /** 1407 * Configuration entry %s cannot be modified because the change would alter its structural object class 1408 */ 1409 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_MODIFY_STRUCTURAL_CHANGE_NOT_ALLOWED = 1410 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_STRUCTURAL_CHANGE_NOT_ALLOWED_653", 653); 1411 1412 /** 1413 * An error occurred while attempting to calculate a SHA-1 digest of file %s: %s 1414 */ 1415 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_CANNOT_CALCULATE_DIGEST = 1416 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CANNOT_CALCULATE_DIGEST_654", 654); 1417 1418 /** 1419 * The Directory Server has detected that one or more external changes have been made to the configuration file %s while the server was online, but another change has caused the server configuration to be overwritten. The manual changes have not been applied, but they have been preserved in file %s 1420 */ 1421 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_MANUAL_CHANGES_DETECTED = 1422 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_MANUAL_CHANGES_DETECTED_655", 655); 1423 1424 /** 1425 * The Directory Server encountered an error while attempting to determine whether the configuration file %s has been externally edited with the server online, and/or trying to preserve such changes: %s. Any manual changes made to that file may have been lost 1426 */ 1427 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_MANUAL_CHANGES_LOST = 1428 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_MANUAL_CHANGES_LOST_656", 656); 1429 1430 /** 1431 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server log rotation policy: %s 1432 */ 1433 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ROTATION_POLICY_INVALID_CLASS = 1434 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ROTATION_POLICY_INVALID_CLASS_657", 657); 1435 1436 /** 1437 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server log retention policy: %s 1438 */ 1439 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_RETENTION_POLICY_INVALID_CLASS = 1440 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RETENTION_POLICY_INVALID_CLASS_658", 658); 1441 1442 /** 1443 * An error occurred while attempting to create a Directory Server log rotation policy from the information in configuration entry %s: %s 1444 */ 1445 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ROTATION_POLICY_CANNOT_CREATE_POLICY = 1446 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ROTATION_POLICY_CANNOT_CREATE_POLICY_659", 659); 1447 1448 /** 1449 * An error occurred while attempting to create a Directory Server log retention policy from the information in configuration entry %s: %s 1450 */ 1451 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_RETENTION_POLICY_CANNOT_CREATE_POLICY = 1452 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_RETENTION_POLICY_CANNOT_CREATE_POLICY_660", 660); 1453 1454 /** 1455 * An error occurred while attempting to create a text writer for a Directory Server logger from the information in configuration entry %s: %s 1456 */ 1457 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGING_CANNOT_CREATE_WRITER = 1458 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_CANNOT_CREATE_WRITER_661", 661); 1459 1460 /** 1461 * Schema configuration file %s in directory %s contains more than one entry. Only the first entry will be examined, and the additional entries will be ignored 1462 */ 1463 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_MULTIPLE_ENTRIES_IN_FILE = 1464 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_MULTIPLE_ENTRIES_IN_FILE_662", 662); 1465 1466 /** 1467 * Schema configuration file %s in directory %s contains additional data after the schema entry that cannot be parsed by the LDIF reader: %s. The first entry will be processed, but the remaining data will be ignored 1468 */ 1469 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> WARN_CONFIG_SCHEMA_UNPARSEABLE_EXTRA_DATA_IN_FILE = 1470 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_UNPARSEABLE_EXTRA_DATA_IN_FILE_663", 663); 1471 1472 /** 1473 * The plugin order definition for plugins of type %s contains an empty element. This may cause the plugin order to be evaluated incorrectly 1474 */ 1475 public static final LocalizableMessageDescriptor.Arg1<Object> WARN_CONFIG_PLUGIN_EMPTY_ELEMENT_IN_ORDER = 1476 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_PLUGIN_EMPTY_ELEMENT_IN_ORDER_664", 664); 1477 1478 /** 1479 * The plugin order definition for plugins of type %s contains multiple wildcard characters. All plugin definitions should contain exactly one wildcard element to indicate where unmatched plugins should be included in the order, and including multiple wildcards may cause the plugin order to be evaluated incorrectly 1480 */ 1481 public static final LocalizableMessageDescriptor.Arg1<Object> WARN_CONFIG_PLUGIN_MULTIPLE_WILDCARDS_IN_ORDER = 1482 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_PLUGIN_MULTIPLE_WILDCARDS_IN_ORDER_665", 665); 1483 1484 /** 1485 * The plugin order definition for plugins of type %s includes multiple references to the '%s' plugin. This may cause the plugin order to be evaluated incorrectly 1486 */ 1487 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_PLUGIN_LISTED_MULTIPLE_TIMES = 1488 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_PLUGIN_LISTED_MULTIPLE_TIMES_666", 666); 1489 1490 /** 1491 * The plugin order definition for plugins of type %s does not include a wildcard element to indicate where unmatched plugins should be included in the order. The server will default to invoking all unnamed plugins after set of named plugins 1492 */ 1493 public static final LocalizableMessageDescriptor.Arg1<Object> WARN_CONFIG_PLUGIN_ORDER_NO_WILDCARD = 1494 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_PLUGIN_ORDER_NO_WILDCARD_667", 667); 1495 1496 /** 1497 * Attribute syntax %s cannot be deleted from the server because it is in use by attribute type %s 1498 */ 1499 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DELETE_SYNTAX_IN_USE = 1500 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DELETE_SYNTAX_IN_USE_668", 668); 1501 1502 /** 1503 * Attribute syntax %s cannot be disabled because it is in use by attribute type %s 1504 */ 1505 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DISABLE_SYNTAX_IN_USE = 1506 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DISABLE_SYNTAX_IN_USE_669", 669); 1507 1508 /** 1509 * Matching rule %s cannot be deleted from the server because it is in use by attribute type %s 1510 */ 1511 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DELETE_MR_IN_USE_BY_AT = 1512 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DELETE_MR_IN_USE_BY_AT_670", 670); 1513 1514 /** 1515 * Matching rule %s cannot be deleted from the server because it is in use by matching rule use %s 1516 */ 1517 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DELETE_MR_IN_USE_BY_MRU = 1518 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DELETE_MR_IN_USE_BY_MRU_671", 671); 1519 1520 /** 1521 * Matching rule %s cannot be disabled because it is in use by attribute type %s 1522 */ 1523 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DISABLE_MR_IN_USE_BY_AT = 1524 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DISABLE_MR_IN_USE_BY_AT_672", 672); 1525 1526 /** 1527 * Matching rule %s cannot be disabled because it is in use by matching rule use %s 1528 */ 1529 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_DISABLE_MR_IN_USE_BY_MRU = 1530 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_DISABLE_MR_IN_USE_BY_MRU_673", 673); 1531 1532 /** 1533 * Unable to initialize an instance of class %s as a work queue as specified in configuration entry %s: %s 1534 */ 1535 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_WORK_QUEUE_INITIALIZATION_FAILED = 1536 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORK_QUEUE_INITIALIZATION_FAILED_674", 674); 1537 1538 /** 1539 * The class used to provide the Directory Server work queue implementation has been changed from %s to %s, but this change will not take effect until the server is restarted 1540 */ 1541 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_CONFIG_WORK_QUEUE_CLASS_CHANGE_REQUIRES_RESTART = 1542 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "INFO_CONFIG_WORK_QUEUE_CLASS_CHANGE_REQUIRES_RESTART_675", 675); 1543 1544 /** 1545 * The attempt to apply the configuration add failed. The preliminary checks were all successful and the entry was added to the server configuration, but at least one of the configuration add listeners reported an error when attempting to apply the change: %s 1546 */ 1547 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_ADD_APPLY_FAILED = 1548 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_ADD_APPLY_FAILED_676", 676); 1549 1550 /** 1551 * The attempt to apply the configuration delete failed. The preliminary checks were all successful and the entry was removed from the server configuration, but at least one of the configuration delete listeners reported an error when attempting to apply the change: %s 1552 */ 1553 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_DELETE_APPLY_FAILED = 1554 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_DELETE_APPLY_FAILED_677", 677); 1555 1556 /** 1557 * The attempt to apply the configuration modification failed. The preliminary checks were all successful and the modified entry was written to the server configuration, but at least one of the configuration change listeners reported an error when attempting to apply the change: %s 1558 */ 1559 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_FILE_MODIFY_APPLY_FAILED = 1560 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_FILE_MODIFY_APPLY_FAILED_678", 678); 1561 1562 /** 1563 * The configuration for the key manager provider defined in configuration entry %s was not acceptable: %s 1564 */ 1565 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_KEYMANAGER_CONFIG_NOT_ACCEPTABLE = 1566 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_KEYMANAGER_CONFIG_NOT_ACCEPTABLE_679", 679); 1567 1568 /** 1569 * The configuration for the trust manager provider defined in configuration entry %s was not acceptable: %s 1570 */ 1571 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_TRUSTMANAGER_CONFIG_NOT_ACCEPTABLE = 1572 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_TRUSTMANAGER_CONFIG_NOT_ACCEPTABLE_680", 680); 1573 1574 /** 1575 * The configuration for the trust manager provider defined in configuration entry %s was not acceptable: %s 1576 */ 1577 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_AUTHZ_CONFIG_NOT_ACCEPTABLE = 1578 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_AUTHZ_CONFIG_NOT_ACCEPTABLE_681", 681); 1579 1580 /** 1581 * The configuration for the account status notification handler defined in configuration entry %s was not acceptable: %s 1582 */ 1583 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ACCTNOTHANDLER_CONFIG_NOT_ACCEPTABLE = 1584 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ACCTNOTHANDLER_CONFIG_NOT_ACCEPTABLE_682", 682); 1585 1586 /** 1587 * The configuration for the attribute syntax defined in configuration entry %s was not acceptable: %s 1588 */ 1589 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_SCHEMA_SYNTAX_CONFIG_NOT_ACCEPTABLE = 1590 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_SYNTAX_CONFIG_NOT_ACCEPTABLE_683", 683); 1591 1592 /** 1593 * The configuration for the certificate mapper defined in configuration entry %s was not acceptable: %s 1594 */ 1595 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_CERTMAPPER_CONFIG_NOT_ACCEPTABLE = 1596 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CERTMAPPER_CONFIG_NOT_ACCEPTABLE_684", 684); 1597 1598 /** 1599 * The configuration for the group implementation defined in configuration entry %s was not acceptable: %s 1600 */ 1601 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_GROUP_CONFIG_NOT_ACCEPTABLE = 1602 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_GROUP_CONFIG_NOT_ACCEPTABLE_686", 686); 1603 1604 /** 1605 * The configuration for the identity mapper defined in configuration entry %s was not acceptable: %s 1606 */ 1607 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_IDMAPPER_CONFIG_NOT_ACCEPTABLE = 1608 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_IDMAPPER_CONFIG_NOT_ACCEPTABLE_687", 687); 1609 1610 /** 1611 * The configuration for the matching rule defined in configuration entry %s was not acceptable: %s 1612 */ 1613 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_SCHEMA_MR_CONFIG_NOT_ACCEPTABLE = 1614 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SCHEMA_MR_CONFIG_NOT_ACCEPTABLE_688", 688); 1615 1616 /** 1617 * The configuration for the password generator defined in configuration entry %s was not acceptable: %s 1618 */ 1619 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_PWGENERATOR_CONFIG_NOT_ACCEPTABLE = 1620 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWGENERATOR_CONFIG_NOT_ACCEPTABLE_689", 689); 1621 1622 /** 1623 * The configuration for the password storage scheme defined in configuration entry %s was not acceptable: %s 1624 */ 1625 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_PWSCHEME_CONFIG_NOT_ACCEPTABLE = 1626 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWSCHEME_CONFIG_NOT_ACCEPTABLE_690", 690); 1627 1628 /** 1629 * The configuration for the password validator defined in configuration entry %s was not acceptable: %s 1630 */ 1631 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_PWVALIDATOR_CONFIG_NOT_ACCEPTABLE = 1632 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWVALIDATOR_CONFIG_NOT_ACCEPTABLE_691", 691); 1633 1634 /** 1635 * The configuration for the plugin defined in configuration entry %s was not acceptable: %s 1636 */ 1637 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_PLUGIN_CONFIG_NOT_ACCEPTABLE = 1638 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PLUGIN_CONFIG_NOT_ACCEPTABLE_692", 692); 1639 1640 /** 1641 * The configuration for the SASL mechanism handler defined in configuration entry %s was not acceptable: %s 1642 */ 1643 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_SASL_CONFIG_NOT_ACCEPTABLE = 1644 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_SASL_CONFIG_NOT_ACCEPTABLE_693", 693); 1645 1646 /** 1647 * The configuration for the virtual attribute provider defined in configuration entry %s was not acceptable: %s 1648 */ 1649 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_VATTR_CONFIG_NOT_ACCEPTABLE = 1650 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_VATTR_CONFIG_NOT_ACCEPTABLE_694", 694); 1651 1652 /** 1653 * The configuration for the alert handler defined in configuration entry %s was not acceptable: %s 1654 */ 1655 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_ALERTHANDLER_CONFIG_NOT_ACCEPTABLE = 1656 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ALERTHANDLER_CONFIG_NOT_ACCEPTABLE_695", 695); 1657 1658 /** 1659 * An error occurred while trying to initialize an instance of class %s as an alert handler as defined in configuration entry %s: %s 1660 */ 1661 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_ALERTHANDLER_INITIALIZATION_FAILED = 1662 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_ALERTHANDLER_INITIALIZATION_FAILED_696", 696); 1663 1664 /** 1665 * The provided SMTP server value '%s' is invalid. An SMTP server value must have an IP address or a resolvable name, and it may optionally be followed by a colon and an integer value between 1 and 65535 to specify the server port number 1666 */ 1667 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_CORE_INVALID_SMTP_SERVER = 1668 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_CORE_INVALID_SMTP_SERVER_697", 697); 1669 1670 /** 1671 * An error occurred while attempting to open the current configuration file %s for reading in order to copy it to the ".startok" file: %s 1672 */ 1673 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_STARTOK_CANNOT_OPEN_FOR_READING = 1674 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_STARTOK_CANNOT_OPEN_FOR_READING_698", 698); 1675 1676 /** 1677 * An error occurred while attempting to open file %s in order to write the ".startok" configuration file: %s 1678 */ 1679 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_STARTOK_CANNOT_OPEN_FOR_WRITING = 1680 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_STARTOK_CANNOT_OPEN_FOR_WRITING_699", 699); 1681 1682 /** 1683 * An error occurred while attempting to copy the current configuration from file %s into temporary file %s for use as the ".startok" configuration file: %s 1684 */ 1685 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_STARTOK_CANNOT_WRITE = 1686 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_STARTOK_CANNOT_WRITE_700", 700); 1687 1688 /** 1689 * An error occurred while attempting to rename file %s to %s for use as the ".startok" configuration file: %s 1690 */ 1691 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_STARTOK_CANNOT_RENAME = 1692 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_STARTOK_CANNOT_RENAME_701", 701); 1693 1694 /** 1695 * The Directory Server is starting using the last known good configuration file %s rather than the active configuration file %s 1696 */ 1697 public static final LocalizableMessageDescriptor.Arg2<Object, Object> NOTE_CONFIG_FILE_USING_STARTOK_FILE = 1698 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "NOTE_CONFIG_FILE_USING_STARTOK_FILE_702", 702); 1699 1700 /** 1701 * No last known good configuration file %s exists. The server will attempt to start using the active configuration file %s 1702 */ 1703 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_FILE_NO_STARTOK_FILE = 1704 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_FILE_NO_STARTOK_FILE_703", 703); 1705 1706 /** 1707 * An error occurred while trying to parse and validate Berkeley DB JE property %s: %s 1708 */ 1709 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_JE_PROPERTY_INVALID = 1710 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JE_PROPERTY_INVALID_704", 704); 1711 1712 /** 1713 * An error occurred while trying to parse and validate Berkeley DB JE property %s: the property does not follow a singular property=value form 1714 */ 1715 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_JE_PROPERTY_INVALID_FORM = 1716 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JE_PROPERTY_INVALID_FORM_705", 705); 1717 1718 /** 1719 * An error occurred while trying to parse and validate Berkeley DB JE property %s: the property shadows configuration attribute %s 1720 */ 1721 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_JE_PROPERTY_SHADOWS_CONFIG = 1722 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JE_PROPERTY_SHADOWS_CONFIG_706", 706); 1723 1724 /** 1725 * An error occurred while trying to parse and validate Berkeley DB JE property %s: the property is already defined for this component 1726 */ 1727 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_JE_DUPLICATE_PROPERTY = 1728 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_JE_DUPLICATE_PROPERTY_707", 707); 1729 1730 /** 1731 * Setting Berkeley DB JE property %s will not take effect until the component for which it is set is restarted 1732 */ 1733 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_CONFIG_JE_PROPERTY_REQUIRES_RESTART = 1734 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "INFO_CONFIG_JE_PROPERTY_REQUIRES_RESTART_708", 708); 1735 1736 /** 1737 * An error occurred while attempting to open the configured log file %s for logger %s: %s 1738 */ 1739 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_LOGGING_CANNOT_OPEN_FILE = 1740 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_CANNOT_OPEN_FILE_709", 709); 1741 1742 /** 1743 * The configuration for the workflow element defined in configuration entry %s was not acceptable: %s 1744 */ 1745 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_WORKFLOW_ELEMENT_CONFIG_NOT_ACCEPTABLE = 1746 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORKFLOW_ELEMENT_CONFIG_NOT_ACCEPTABLE_710", 710); 1747 1748 /** 1749 * An error occurred while trying to initialize a workflow element from class %s with the information in configuration entry %s: %s. This workflow element will be disabled 1750 */ 1751 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_WORKFLOW_ELEMENT_CANNOT_INITIALIZE = 1752 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORKFLOW_ELEMENT_CANNOT_INITIALIZE_711", 711); 1753 1754 /** 1755 * An error occurred while trying to configure in manual mode the workflows in the Directory Server, and rollback to automatic configuration mode has failed too. If the server is in an unstable state restart it with the last valid configuration 1756 */ 1757 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_WORKFLOW_CANNOT_CONFIGURE_MANUAL = 1758 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORKFLOW_CANNOT_CONFIGURE_MANUAL_713", 713); 1759 1760 /** 1761 * An error occurred while trying to configure in automatic mode the workflows in the Directory Server, and rollback to manual configuration mode has failed too. If the server is in an unstable state restart it with the last valid configuration 1762 */ 1763 public static final LocalizableMessageDescriptor.Arg0 ERR_CONFIG_WORKFLOW_CANNOT_CONFIGURE_AUTO = 1764 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "ERR_CONFIG_WORKFLOW_CANNOT_CONFIGURE_AUTO_714", 714); 1765 1766 /** 1767 * Invalid UNIX file permissions %s does not allow write access to the log file by the log publisher 1768 */ 1769 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_LOGGING_INSANE_MODE = 1770 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_INSANE_MODE_715", 715); 1771 1772 /** 1773 * Invalid UNIX file permissions %s: %s 1774 */ 1775 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGING_MODE_INVALID = 1776 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_MODE_INVALID_716", 716); 1777 1778 /** 1779 * The configuration for the extension defined in configuration entry %s was not acceptable: %s 1780 */ 1781 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_EXTENSION_CONFIG_NOT_ACCEPTABLE = 1782 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_EXTENSION_CONFIG_NOT_ACCEPTABLE_717", 717); 1783 1784 /** 1785 * An error occurred while trying to initialize an instance of class %s as an extension as defined in configuration entry %s: %s 1786 */ 1787 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_EXTENSION_INITIALIZATION_FAILED = 1788 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_EXTENSION_INITIALIZATION_FAILED_718", 718); 1789 1790 /** 1791 * The allowed attribute %s specified in configuration entry %s is also defined as a prohibited attribute 1792 */ 1793 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_NETWORKGROUPREQUESTFILTERINGPOLICY_INVALID_ATTRIBUTE = 1794 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_NETWORKGROUPREQUESTFILTERINGPOLICY_INVALID_ATTRIBUTE_719", 719); 1795 1796 /** 1797 * The allowed subtree %s specified in configuration entry %s is also defined as a prohibited subtree 1798 */ 1799 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_NETWORKGROUPREQUESTFILTERINGPOLICY_INVALID_SUBTREE = 1800 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_NETWORKGROUPREQUESTFILTERINGPOLICY_INVALID_SUBTREE_720", 720); 1801 1802 /** 1803 * The configuration for the network group defined in configuration entry %s was not acceptable: %s 1804 */ 1805 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_NETWORK_GROUP_CONFIG_NOT_ACCEPTABLE = 1806 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_NETWORK_GROUP_CONFIG_NOT_ACCEPTABLE_721", 721); 1807 1808 /** 1809 * An error occurred while trying to initialize a network group policy loaded from class %s with the information in configuration entry %s: %s 1810 */ 1811 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_NETWORK_GROUP_POLICY_CANNOT_INITIALIZE = 1812 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_NETWORK_GROUP_POLICY_CANNOT_INITIALIZE_722", 722); 1813 1814 /** 1815 * An ldapSyntaxes attribute read from schema configuration file %s could not be parsed: %s 1816 */ 1817 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CANNOT_PARSE_LDAP_SYNTAX = 1818 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CANNOT_PARSE_LDAP_SYNTAX_723", 723); 1819 1820 /** 1821 * An ldap syntax read from schema configuration file %s conflicts with another ldap syntax already read into the schema: %s. The later ldap syntax description will be used 1822 */ 1823 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_SCHEMA_CONFLICTING_LDAP_SYNTAX = 1824 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_SCHEMA_CONFLICTING_LDAP_SYNTAX_724", 724); 1825 1826 /** 1827 * The configuration entry '%s' is currently defined to be the default password policy, however it is not a password policy 1828 */ 1829 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_PWPOLICY_DEFAULT_POLICY_IS_WRONG_TYPE = 1830 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_DEFAULT_POLICY_IS_WRONG_TYPE_726", 726); 1831 1832 /** 1833 * The default password policy value '%s' is invalid because it refers to an authentication policy which is not a password policy 1834 */ 1835 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_PWPOLICY_CANNOT_CHANGE_DEFAULT_POLICY_WRONG_TYPE = 1836 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_PWPOLICY_CANNOT_CHANGE_DEFAULT_POLICY_WRONG_TYPE_727", 727); 1837 1838 /** 1839 * The timestamp format string "%s" is not a valid format string. The format string should conform to the syntax described in the documentation for the "java.text.SimpleDateFormat" class 1840 */ 1841 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_LOGGING_INVALID_TIME_FORMAT = 1842 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_INVALID_TIME_FORMAT_728", 728); 1843 1844 /** 1845 * The access log filtering criteria defined in "%s" could not be parsed because it contains an invalid user DN pattern "%s" 1846 */ 1847 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGING_INVALID_USER_DN_PATTERN = 1848 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_INVALID_USER_DN_PATTERN_729", 729); 1849 1850 /** 1851 * The access log filtering criteria defined in "%s" could not be parsed because it contains an invalid target DN pattern "%s" 1852 */ 1853 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGING_INVALID_TARGET_DN_PATTERN = 1854 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_INVALID_TARGET_DN_PATTERN_730", 730); 1855 1856 /** 1857 * There are no active HTTP access loggers defined in the Directory Server configuration. No HTTP access logging will be performed 1858 */ 1859 public static final LocalizableMessageDescriptor.Arg0 WARN_CONFIG_LOGGER_NO_ACTIVE_HTTP_ACCESS_LOGGERS = 1860 new LocalizableMessageDescriptor.Arg0(ConfigMessages.class, RESOURCE, "WARN_CONFIG_LOGGER_NO_ACTIVE_HTTP_ACCESS_LOGGERS_731", 731); 1861 1862 /** 1863 * Class %s specified in attribute ds-cfg-java-class of configuration entry %s cannot be instantiated as a Directory Server HTTP access logger: %s 1864 */ 1865 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONFIG_LOGGER_INVALID_HTTP_ACCESS_LOGGER_CLASS = 1866 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_INVALID_HTTP_ACCESS_LOGGER_CLASS_732", 732); 1867 1868 /** 1869 * The log format for configuration entry %s is empty. No information will be logged even if logging is activated 1870 */ 1871 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONFIG_LOGGING_EMPTY_LOG_FORMAT = 1872 new LocalizableMessageDescriptor.Arg1<Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGING_EMPTY_LOG_FORMAT_733", 733); 1873 1874 /** 1875 * The log format for %s contains the folowing unsupported fields: %s. Their output will be replaced with a dash ("-") character 1876 */ 1877 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_CONFIG_LOGGING_UNSUPPORTED_FIELDS_IN_LOG_FORMAT = 1878 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "WARN_CONFIG_LOGGING_UNSUPPORTED_FIELDS_IN_LOG_FORMAT_734", 734); 1879 1880 /** 1881 * An error occurred while attempting to update a Directory Server logger from the information in configuration entry %s: %s 1882 */ 1883 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGER_CANNOT_UPDATE_LOGGER = 1884 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_CANNOT_UPDATE_LOGGER_735", 735); 1885 1886 /** 1887 * An error occurred while attempting to delete a Directory Server logger from the information in configuration entry %s: %s 1888 */ 1889 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONFIG_LOGGER_CANNOT_DELETE_LOGGER = 1890 new LocalizableMessageDescriptor.Arg2<Object, Object>(ConfigMessages.class, RESOURCE, "ERR_CONFIG_LOGGER_CANNOT_DELETE_LOGGER_736", 736); 1891 1892}