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.utility}. This file was generated 008 * automatically by the {@code i18n-maven-plugin} from the property file 009 * {@code org/opends/messages/utility.properties} and it should not be manually edited. 010 */ 011public final class UtilityMessages { 012 // The name of the resource bundle. 013 private static final String RESOURCE = "org.opends.messages.utility"; 014 015 // Prevent instantiation. 016 private UtilityMessages() { 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 * The value %s cannot be base64-decoded because it does not have a length that is a multiple of four bytes 034 */ 035 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_DECODE_INVALID_LENGTH = 036 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_DECODE_INVALID_LENGTH_1", 1); 037 038 /** 039 * The value %s cannot be base64-decoded because it contains an illegal character %c that is not allowed in base64-encoded values 040 */ 041 public static final LocalizableMessageDescriptor.Arg2<Object, Character> ERR_BASE64_DECODE_INVALID_CHARACTER = 042 new LocalizableMessageDescriptor.Arg2<Object, Character>(UtilityMessages.class, RESOURCE, "ERR_BASE64_DECODE_INVALID_CHARACTER_2", 2); 043 044 /** 045 * The value %s cannot be decoded as a hexadecimal string because it does not have a length that is a multiple of two bytes 046 */ 047 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_HEX_DECODE_INVALID_LENGTH = 048 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_HEX_DECODE_INVALID_LENGTH_3", 3); 049 050 /** 051 * The value %s cannot be decoded as a hexadecimal string because it contains an illegal character %c that is not a valid hexadecimal digit 052 */ 053 public static final LocalizableMessageDescriptor.Arg2<Object, Character> ERR_HEX_DECODE_INVALID_CHARACTER = 054 new LocalizableMessageDescriptor.Arg2<Object, Character>(UtilityMessages.class, RESOURCE, "ERR_HEX_DECODE_INVALID_CHARACTER_4", 4); 055 056 /** 057 * Unable to parse line %d ("%s") from the LDIF source because the line started with a space but there were no previous lines in the entry to which this line could be appended 058 */ 059 public static final LocalizableMessageDescriptor.Arg2<Number, Object> ERR_LDIF_INVALID_LEADING_SPACE = 060 new LocalizableMessageDescriptor.Arg2<Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_LEADING_SPACE_5", 5); 061 062 /** 063 * Unable to parse LDIF entry starting at line %d because the line "%s" does not include an attribute name 064 */ 065 public static final LocalizableMessageDescriptor.Arg2<Number, Object> ERR_LDIF_NO_ATTR_NAME = 066 new LocalizableMessageDescriptor.Arg2<Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_NO_ATTR_NAME_6", 6); 067 068 /** 069 * Unable to parse LDIF entry starting at line %d because the first line does not contain a DN (the first line was "%s" 070 */ 071 public static final LocalizableMessageDescriptor.Arg2<Number, Object> ERR_LDIF_NO_DN = 072 new LocalizableMessageDescriptor.Arg2<Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_NO_DN_7", 7); 073 074 /** 075 * Unable to parse LDIF entry starting at line %d because an error occurred while trying to parse the value of line "%s" as a distinguished name: %s 076 */ 077 public static final LocalizableMessageDescriptor.Arg3<Number, Object, Object> ERR_LDIF_INVALID_DN = 078 new LocalizableMessageDescriptor.Arg3<Number, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_DN_9", 9); 079 080 /** 081 * Unable to parse LDIF entry starting at line %d because it was not possible to base64-decode the DN on line "%s": %s 082 */ 083 public static final LocalizableMessageDescriptor.Arg3<Number, Object, Object> ERR_LDIF_COULD_NOT_BASE64_DECODE_DN = 084 new LocalizableMessageDescriptor.Arg3<Number, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_COULD_NOT_BASE64_DECODE_DN_11", 11); 085 086 /** 087 * Unable to parse LDIF entry %s starting at line %d because it was not possible to base64-decode the attribute on line "%s": %s 088 */ 089 public static final LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object> ERR_LDIF_COULD_NOT_BASE64_DECODE_ATTR = 090 new LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_COULD_NOT_BASE64_DECODE_ATTR_12", 12); 091 092 /** 093 * Entry %s read from LDIF starting at line %d includes a duplicate objectclass value %s. The second occurrence of that objectclass has been skipped 094 */ 095 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> WARN_LDIF_DUPLICATE_OBJECTCLASS = 096 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(UtilityMessages.class, RESOURCE, "WARN_LDIF_DUPLICATE_OBJECTCLASS_13", 13); 097 098 /** 099 * Entry %s read from LDIF starting at line %d includes a duplicate attribute %s with value %s. The second occurrence of that attribute value has been skipped 100 */ 101 public static final LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object> WARN_LDIF_DUPLICATE_ATTR = 102 new LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object>(UtilityMessages.class, RESOURCE, "WARN_LDIF_DUPLICATE_ATTR_14", 14); 103 104 /** 105 * Entry %s starting at line %d includes multiple values for single-valued attribute %s 106 */ 107 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_LDIF_MULTIPLE_VALUES_FOR_SINGLE_VALUED_ATTR = 108 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_MULTIPLE_VALUES_FOR_SINGLE_VALUED_ATTR_15", 15); 109 110 /** 111 * Entry %s read from LDIF starting at line %d is not valid because it violates the server's schema configuration: %s 112 */ 113 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_LDIF_SCHEMA_VIOLATION = 114 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_SCHEMA_VIOLATION_17", 17); 115 116 /** 117 * The specified LDIF file %s already exists and the export configuration indicates that no attempt should be made to append to or replace the file 118 */ 119 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_FILE_EXISTS = 120 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_FILE_EXISTS_18", 18); 121 122 /** 123 * Unable to parse LDIF entry %s starting at line %d because the value of attribute %s was to be read from a URL but the URL was invalid: %s 124 */ 125 public static final LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object> ERR_LDIF_INVALID_URL = 126 new LocalizableMessageDescriptor.Arg4<Object, Number, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_URL_19", 19); 127 128 /** 129 * Unable to parse LDIF entry %s starting at line %d because the value of attribute %s was to be read from URL %s but an error occurred while trying to read that content: %s 130 */ 131 public static final LocalizableMessageDescriptor.Arg5<Object, Number, Object, Object, Object> ERR_LDIF_URL_IO_ERROR = 132 new LocalizableMessageDescriptor.Arg5<Object, Number, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_URL_IO_ERROR_20", 20); 133 134 /** 135 * The specified reject file %s already exists and the import configuration indicates that no attempt should be made to append to or replace the file 136 */ 137 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_REJECT_FILE_EXISTS = 138 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_REJECT_FILE_EXISTS_21", 21); 139 140 /** 141 * An error occurred while attempting to determine whether LDIF entry "%s" starting at line %d should be imported as a result of the include and exclude filter configuration: %s 142 */ 143 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_IMPORT = 144 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_IMPORT_22", 22); 145 146 /** 147 * An error occurred while attempting to determine whether LDIF entry "%s" should be exported as a result of the include and exclude filter configuration: %s 148 */ 149 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_EXPORT = 150 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_EXPORT_23", 23); 151 152 /** 153 * Error in the LDIF change record entry. Invalid attributes specified for the delete operation 154 */ 155 public static final LocalizableMessageDescriptor.Arg0 ERR_LDIF_INVALID_DELETE_ATTRIBUTES = 156 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_DELETE_ATTRIBUTES_24", 24); 157 158 /** 159 * Error in the LDIF change record entry. No attributes specified for the mod DN operation 160 */ 161 public static final LocalizableMessageDescriptor.Arg0 ERR_LDIF_NO_MOD_DN_ATTRIBUTES = 162 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_LDIF_NO_MOD_DN_ATTRIBUTES_25", 25); 163 164 /** 165 * Error in the LDIF change record entry. No delete old RDN attribute specified for the mod DN operation 166 */ 167 public static final LocalizableMessageDescriptor.Arg0 ERR_LDIF_NO_DELETE_OLDRDN_ATTRIBUTE = 168 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_LDIF_NO_DELETE_OLDRDN_ATTRIBUTE_26", 26); 169 170 /** 171 * Error in the LDIF change record entry. Invalid value "%s" for the delete old RDN attribute specified for the mod DN operation 172 */ 173 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_INVALID_DELETE_OLDRDN_ATTRIBUTE = 174 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_DELETE_OLDRDN_ATTRIBUTE_27", 27); 175 176 /** 177 * Error in the LDIF change record entry. Invalid attribute "%s" specified. Expecting attribute "%s" 178 */ 179 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_INVALID_CHANGERECORD_ATTRIBUTE = 180 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_CHANGERECORD_ATTRIBUTE_28", 28); 181 182 /** 183 * Error in the LDIF change record entry. Invalid attribute "%s" specified. Expecting one of the following attributes "%s" 184 */ 185 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_INVALID_MODIFY_ATTRIBUTE = 186 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_MODIFY_ATTRIBUTE_29", 29); 187 188 /** 189 * Error in the LDIF change record entry. Invalid value "%s" for the changetype specified. Expecting one of the following values "%s" 190 */ 191 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_INVALID_CHANGETYPE_ATTRIBUTE = 192 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_CHANGETYPE_ATTRIBUTE_30", 30); 193 194 /** 195 * The provided value could not be parsed to determine whether it contained a valid schema element name or OID because it was null or empty 196 */ 197 public static final LocalizableMessageDescriptor.Arg0 ERR_SCHEMANAME_EMPTY_VALUE = 198 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_SCHEMANAME_EMPTY_VALUE_32", 32); 199 200 /** 201 * The provided value "%s" does not contain a valid schema element name or OID because it contains an illegal character %c at position %d 202 */ 203 public static final LocalizableMessageDescriptor.Arg3<Object, Character, Number> ERR_SCHEMANAME_ILLEGAL_CHAR = 204 new LocalizableMessageDescriptor.Arg3<Object, Character, Number>(UtilityMessages.class, RESOURCE, "ERR_SCHEMANAME_ILLEGAL_CHAR_33", 33); 205 206 /** 207 * The provided value "%s" does not contain a valid schema element name or OID because the numeric OID contains two consecutive periods at position %d 208 */ 209 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_SCHEMANAME_CONSECUTIVE_PERIODS = 210 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "ERR_SCHEMANAME_CONSECUTIVE_PERIODS_34", 34); 211 212 /** 213 * The %s argument does not have either a single-character or a long identifier that may be used to specify it. At least one of these must be specified for each argument 214 */ 215 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_NO_IDENTIFIER = 216 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_NO_IDENTIFIER_35", 35); 217 218 /** 219 * The %s argument is configured to take a value but no value placeholder has been defined for it 220 */ 221 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_NO_VALUE_PLACEHOLDER = 222 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_NO_VALUE_PLACEHOLDER_36", 36); 223 224 /** 225 * The %s argument does not have any value that may be retrieved as an integer 226 */ 227 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_NO_INT_VALUE = 228 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_NO_INT_VALUE_37", 37); 229 230 /** 231 * The provided value "%s" for the %s argument cannot be decoded as an integer 232 */ 233 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_ARG_CANNOT_DECODE_AS_INT = 234 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_CANNOT_DECODE_AS_INT_38", 38); 235 236 /** 237 * The %s argument has multiple values and therefore cannot be decoded as a single integer value 238 */ 239 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_INT_MULTIPLE_VALUES = 240 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_INT_MULTIPLE_VALUES_39", 39); 241 242 /** 243 * The %s argument does not have any value that may be retrieved as a Boolean 244 */ 245 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_NO_BOOLEAN_VALUE = 246 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_NO_BOOLEAN_VALUE_40", 40); 247 248 /** 249 * The provided value "%s" for the %s argument cannot be decoded as a Boolean 250 */ 251 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_ARG_CANNOT_DECODE_AS_BOOLEAN = 252 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_CANNOT_DECODE_AS_BOOLEAN_41", 41); 253 254 /** 255 * The %s argument has multiple values and therefore cannot be decoded as a single Boolean value 256 */ 257 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_BOOLEAN_MULTIPLE_VALUES = 258 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_BOOLEAN_MULTIPLE_VALUES_42", 42); 259 260 /** 261 * The %s argument configuration is invalid because the lower bound of %d is greater than the upper bound of %d 262 */ 263 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_INTARG_LOWER_BOUND_ABOVE_UPPER_BOUND = 264 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(UtilityMessages.class, RESOURCE, "ERR_INTARG_LOWER_BOUND_ABOVE_UPPER_BOUND_43", 43); 265 266 /** 267 * The provided %s value %d is unacceptable because it is below the lower bound of %d 268 */ 269 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_INTARG_VALUE_BELOW_LOWER_BOUND = 270 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(UtilityMessages.class, RESOURCE, "ERR_INTARG_VALUE_BELOW_LOWER_BOUND_44", 44); 271 272 /** 273 * The provided %s value %d is unacceptable because it is above the upper bound of %d 274 */ 275 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_INTARG_VALUE_ABOVE_UPPER_BOUND = 276 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(UtilityMessages.class, RESOURCE, "ERR_INTARG_VALUE_ABOVE_UPPER_BOUND_45", 45); 277 278 /** 279 * The provided %s value is unacceptable because Boolean arguments are never allowed to have values 280 */ 281 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BOOLEANARG_NO_VALUE_ALLOWED = 282 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BOOLEANARG_NO_VALUE_ALLOWED_46", 46); 283 284 /** 285 * The provided %s value %s is unacceptable because it is not included in the set of allowed values for that argument 286 */ 287 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_MCARG_VALUE_NOT_ALLOWED = 288 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_MCARG_VALUE_NOT_ALLOWED_47", 47); 289 290 /** 291 * The file %s specified for argument %s does not exist 292 */ 293 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_FILEARG_NO_SUCH_FILE = 294 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_FILEARG_NO_SUCH_FILE_48", 48); 295 296 /** 297 * An error occurred while trying to verify the existence of file %s specified for argument %s: %s 298 */ 299 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_FILEARG_CANNOT_VERIFY_FILE_EXISTENCE = 300 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_FILEARG_CANNOT_VERIFY_FILE_EXISTENCE_49", 49); 301 302 /** 303 * An error occurred while trying to open file %s specified for argument %s for reading: %s 304 */ 305 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_FILEARG_CANNOT_OPEN_FILE = 306 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_FILEARG_CANNOT_OPEN_FILE_50", 50); 307 308 /** 309 * An error occurred while trying to read from file %s specified for argument %s: %s 310 */ 311 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_FILEARG_CANNOT_READ_FILE = 312 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_FILEARG_CANNOT_READ_FILE_51", 51); 313 314 /** 315 * The file %s specified for argument %s exists but is empty 316 */ 317 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_FILEARG_EMPTY_FILE = 318 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_FILEARG_EMPTY_FILE_52", 52); 319 320 /** 321 * Cannot add argument %s to the argument list because its short identifier -%s conflicts with the %s argument that has already been defined 322 */ 323 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_ARGPARSER_DUPLICATE_SHORT_ID = 324 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_DUPLICATE_SHORT_ID_53", 53); 325 326 /** 327 * Cannot add argument %s to the argument list because its long identifier --%s conflicts with the %s argument that has already been defined 328 */ 329 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_ARGPARSER_DUPLICATE_LONG_ID = 330 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_DUPLICATE_LONG_ID_54", 54); 331 332 /** 333 * An error occurred while attempting to read the contents of the argument properties file %s: %s 334 */ 335 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_ARGPARSER_CANNOT_READ_PROPERTIES_FILE = 336 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_CANNOT_READ_PROPERTIES_FILE_55", 55); 337 338 /** 339 * The provided set of command-line arguments contained too many unnamed trailing arguments. The maximum number of allowed trailing arguments is %d 340 */ 341 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_ARGPARSER_TOO_MANY_TRAILING_ARGS = 342 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_TOO_MANY_TRAILING_ARGS_56", 56); 343 344 /** 345 * The provided argument "%s" is invalid because it does not include the argument name 346 */ 347 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_LONG_ARG_WITHOUT_NAME = 348 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_LONG_ARG_WITHOUT_NAME_57", 57); 349 350 /** 351 * Argument --%s is not allowed for use with this program 352 */ 353 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NO_ARGUMENT_WITH_LONG_ID = 354 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NO_ARGUMENT_WITH_LONG_ID_58", 58); 355 356 /** 357 * Argument --%s requires a value but none was provided 358 */ 359 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NO_VALUE_FOR_ARGUMENT_WITH_LONG_ID = 360 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NO_VALUE_FOR_ARGUMENT_WITH_LONG_ID_59", 59); 361 362 /** 363 * The provided value "%s" for argument --%s is not acceptable: %s 364 */ 365 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_ARGPARSER_VALUE_UNACCEPTABLE_FOR_LONG_ID = 366 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_VALUE_UNACCEPTABLE_FOR_LONG_ID_60", 60); 367 368 /** 369 * The argument --%s was included multiple times in the provided set of arguments but it does not allow multiple values 370 */ 371 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NOT_MULTIVALUED_FOR_LONG_ID = 372 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NOT_MULTIVALUED_FOR_LONG_ID_61", 61); 373 374 /** 375 * A value was provided for argument --%s but that argument does not take a value 376 */ 377 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_ARG_FOR_LONG_ID_DOESNT_TAKE_VALUE = 378 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_ARG_FOR_LONG_ID_DOESNT_TAKE_VALUE_62", 62); 379 380 /** 381 * The dash character by itself is invalid for use as an argument name 382 */ 383 public static final LocalizableMessageDescriptor.Arg0 ERR_ARGPARSER_INVALID_DASH_AS_ARGUMENT = 384 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_INVALID_DASH_AS_ARGUMENT_63", 63); 385 386 /** 387 * Argument -%s is not allowed for use with this program 388 */ 389 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NO_ARGUMENT_WITH_SHORT_ID = 390 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NO_ARGUMENT_WITH_SHORT_ID_64", 64); 391 392 /** 393 * Argument -%s requires a value but none was provided 394 */ 395 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NO_VALUE_FOR_ARGUMENT_WITH_SHORT_ID = 396 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NO_VALUE_FOR_ARGUMENT_WITH_SHORT_ID_65", 65); 397 398 /** 399 * The provided value "%s" for argument -%s is not acceptable: %s 400 */ 401 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_ARGPARSER_VALUE_UNACCEPTABLE_FOR_SHORT_ID = 402 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_VALUE_UNACCEPTABLE_FOR_SHORT_ID_66", 66); 403 404 /** 405 * The argument -%s was included multiple times in the provided set of arguments but it does not allow multiple values 406 */ 407 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NOT_MULTIVALUED_FOR_SHORT_ID = 408 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NOT_MULTIVALUED_FOR_SHORT_ID_67", 67); 409 410 /** 411 * The provided argument block '-%s%s' is illegal because the '%s' argument requires a value but is in the same block as at least one other argument that doesn't require a value 412 */ 413 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_ARGPARSER_CANT_MIX_ARGS_WITH_VALUES = 414 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_CANT_MIX_ARGS_WITH_VALUES_68", 68); 415 416 /** 417 * Argument "%s" does not start with one or two dashes and unnamed trailing arguments are not allowed 418 */ 419 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_DISALLOWED_TRAILING_ARGUMENT = 420 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_DISALLOWED_TRAILING_ARGUMENT_69", 69); 421 422 /** 423 * At least %d unnamed trailing arguments are required in the argument list, but too few were provided 424 */ 425 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_ARGPARSER_TOO_FEW_TRAILING_ARGUMENTS = 426 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_TOO_FEW_TRAILING_ARGUMENTS_70", 70); 427 428 /** 429 * The argument %s is required to have a value but none was provided in the argument list and no default value is available 430 */ 431 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARGPARSER_NO_VALUE_FOR_REQUIRED_ARG = 432 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARGPARSER_NO_VALUE_FOR_REQUIRED_ARG_71", 71); 433 434 /** 435 * The file to move %s does not exist 436 */ 437 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MOVEFILE_NO_SUCH_FILE = 438 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_MOVEFILE_NO_SUCH_FILE_72", 72); 439 440 /** 441 * The file to move %s exists but is not a file 442 */ 443 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MOVEFILE_NOT_FILE = 444 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_MOVEFILE_NOT_FILE_73", 73); 445 446 /** 447 * The target directory %s does not exist 448 */ 449 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MOVEFILE_NO_SUCH_DIRECTORY = 450 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_MOVEFILE_NO_SUCH_DIRECTORY_74", 74); 451 452 /** 453 * The target directory %s exists but is not a directory 454 */ 455 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MOVEFILE_NOT_DIRECTORY = 456 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_MOVEFILE_NOT_DIRECTORY_75", 75); 457 458 /** 459 * The provided sender address %s is invalid: %s 460 */ 461 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EMAILMSG_INVALID_SENDER_ADDRESS = 462 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EMAILMSG_INVALID_SENDER_ADDRESS_76", 76); 463 464 /** 465 * The provided recipient address %s is invalid: %s 466 */ 467 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EMAILMSG_INVALID_RECIPIENT_ADDRESS = 468 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EMAILMSG_INVALID_RECIPIENT_ADDRESS_77", 77); 469 470 /** 471 * The specified e-mail message could not be sent using any of the configured mail servers 472 */ 473 public static final LocalizableMessageDescriptor.Arg0 ERR_EMAILMSG_CANNOT_SEND = 474 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_EMAILMSG_CANNOT_SEND_78", 78); 475 476 /** 477 * The argument parser already has a %s subcommand 478 */ 479 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ARG_SUBCOMMAND_DUPLICATE_SUBCOMMAND = 480 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_DUPLICATE_SUBCOMMAND_79", 79); 481 482 /** 483 * There are multiple arguments for subcommand %s with name %s 484 */ 485 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_ARG_SUBCOMMAND_DUPLICATE_ARGUMENT_NAME = 486 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_DUPLICATE_ARGUMENT_NAME_80", 80); 487 488 /** 489 * Argument %s for subcommand %s conflicts with a global argument with the same name 490 */ 491 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_ARG_SUBCOMMAND_ARGUMENT_GLOBAL_CONFLICT = 492 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_ARGUMENT_GLOBAL_CONFLICT_81", 81); 493 494 /** 495 * Argument %s for subcommand %s has a short identifier -%s that conflicts with that of argument %s 496 */ 497 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_ARG_SUBCOMMAND_DUPLICATE_SHORT_ID = 498 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_DUPLICATE_SHORT_ID_82", 82); 499 500 /** 501 * Argument %s for subcommand %s has a short ID -%s that conflicts with that of global argument %s 502 */ 503 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_ARG_SUBCOMMAND_ARGUMENT_SHORT_ID_GLOBAL_CONFLICT = 504 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_ARGUMENT_SHORT_ID_GLOBAL_CONFLICT_83", 83); 505 506 /** 507 * Argument %s for subcommand %s has a long identifier --%s that conflicts with that of argument %s 508 */ 509 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_ARG_SUBCOMMAND_DUPLICATE_LONG_ID = 510 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_DUPLICATE_LONG_ID_84", 84); 511 512 /** 513 * Argument %s for subcommand %s has a long ID --%s that conflicts with that of global argument %s 514 */ 515 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_ARG_SUBCOMMAND_ARGUMENT_LONG_ID_GLOBAL_CONFLICT = 516 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_ARGUMENT_LONG_ID_GLOBAL_CONFLICT_85", 85); 517 518 /** 519 * There is already another global argument named "%s" 520 */ 521 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_NAME = 522 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_NAME_86", 86); 523 524 /** 525 * The argument name %s conflicts with the name of another argument associated with the %s subcommand 526 */ 527 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_SUBCMDPARSER_GLOBAL_ARG_NAME_SUBCMD_CONFLICT = 528 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_GLOBAL_ARG_NAME_SUBCMD_CONFLICT_87", 87); 529 530 /** 531 * Short ID -%s for global argument %s conflicts with the short ID of another global argument %s 532 */ 533 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_SHORT_ID = 534 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_SHORT_ID_88", 88); 535 536 /** 537 * Short ID -%s for global argument %s conflicts with the short ID for the %s argument associated with subcommand %s 538 */ 539 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_SUBCMDPARSER_GLOBAL_ARG_SHORT_ID_CONFLICT = 540 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_GLOBAL_ARG_SHORT_ID_CONFLICT_89", 89); 541 542 /** 543 * Long ID --%s for global argument %s conflicts with the long ID of another global argument %s 544 */ 545 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_LONG_ID = 546 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_DUPLICATE_GLOBAL_ARG_LONG_ID_90", 90); 547 548 /** 549 * Long ID --%s for global argument %s conflicts with the long ID for the %s argument associated with subcommand %s 550 */ 551 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_SUBCMDPARSER_GLOBAL_ARG_LONG_ID_CONFLICT = 552 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_GLOBAL_ARG_LONG_ID_CONFLICT_91", 91); 553 554 /** 555 * An error occurred while attempting to read the contents of the argument properties file %s: %s 556 */ 557 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_SUBCMDPARSER_CANNOT_READ_PROPERTIES_FILE = 558 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_CANNOT_READ_PROPERTIES_FILE_92", 92); 559 560 /** 561 * The provided command-line argument %s does not contain an argument name 562 */ 563 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_LONG_ARG_WITHOUT_NAME = 564 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_LONG_ARG_WITHOUT_NAME_93", 93); 565 566 /** 567 * The provided argument --%s is not a valid global argument identifier 568 */ 569 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_GLOBAL_ARGUMENT_FOR_LONG_ID = 570 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_GLOBAL_ARGUMENT_FOR_LONG_ID_94", 94); 571 572 /** 573 * The provided argument --%s is not a valid global or subcommand argument identifier 574 */ 575 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_ARGUMENT_FOR_LONG_ID = 576 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_ARGUMENT_FOR_LONG_ID_95", 95); 577 578 /** 579 * Command-line argument --%s requires a value but none was given 580 */ 581 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_VALUE_FOR_ARGUMENT_WITH_LONG_ID = 582 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_VALUE_FOR_ARGUMENT_WITH_LONG_ID_96", 96); 583 584 /** 585 * The provided value "%s" for argument --%s is not acceptable: %s 586 */ 587 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_SUBCMDPARSER_VALUE_UNACCEPTABLE_FOR_LONG_ID = 588 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_VALUE_UNACCEPTABLE_FOR_LONG_ID_97", 97); 589 590 /** 591 * The argument --%s was included multiple times in the provided set of arguments but it does not allow multiple values 592 */ 593 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NOT_MULTIVALUED_FOR_LONG_ID = 594 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NOT_MULTIVALUED_FOR_LONG_ID_98", 98); 595 596 /** 597 * A value was provided for argument --%s but that argument does not take a value 598 */ 599 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_ARG_FOR_LONG_ID_DOESNT_TAKE_VALUE = 600 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_ARG_FOR_LONG_ID_DOESNT_TAKE_VALUE_99", 99); 601 602 /** 603 * The dash character by itself is invalid for use as an argument name 604 */ 605 public static final LocalizableMessageDescriptor.Arg0 ERR_SUBCMDPARSER_INVALID_DASH_AS_ARGUMENT = 606 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_INVALID_DASH_AS_ARGUMENT_100", 100); 607 608 /** 609 * The provided argument -%s is not a valid global argument identifier 610 */ 611 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_GLOBAL_ARGUMENT_FOR_SHORT_ID = 612 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_GLOBAL_ARGUMENT_FOR_SHORT_ID_101", 101); 613 614 /** 615 * The provided argument -%s is not a valid global or subcommand argument identifier 616 */ 617 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_ARGUMENT_FOR_SHORT_ID = 618 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_ARGUMENT_FOR_SHORT_ID_102", 102); 619 620 /** 621 * Argument -%s requires a value but none was provided 622 */ 623 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_VALUE_FOR_ARGUMENT_WITH_SHORT_ID = 624 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_VALUE_FOR_ARGUMENT_WITH_SHORT_ID_103", 103); 625 626 /** 627 * The provided value "%s" for argument -%s is not acceptable: %s 628 */ 629 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_SUBCMDPARSER_VALUE_UNACCEPTABLE_FOR_SHORT_ID = 630 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_VALUE_UNACCEPTABLE_FOR_SHORT_ID_104", 104); 631 632 /** 633 * The argument -%s was included multiple times in the provided set of arguments but it does not allow multiple values 634 */ 635 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NOT_MULTIVALUED_FOR_SHORT_ID = 636 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NOT_MULTIVALUED_FOR_SHORT_ID_105", 105); 637 638 /** 639 * The provided argument block '-%s%s' is illegal because the '%s' argument requires a value but is in the same block as at least one other argument that doesn't require a value 640 */ 641 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_SUBCMDPARSER_CANT_MIX_ARGS_WITH_VALUES = 642 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_CANT_MIX_ARGS_WITH_VALUES_106", 106); 643 644 /** 645 * The provided argument "%s" is not recognized 646 */ 647 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_INVALID_ARGUMENT = 648 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_INVALID_ARGUMENT_107", 107); 649 650 /** 651 * The argument %s is required to have a value but none was provided in the argument list and no default value is available 652 */ 653 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBCMDPARSER_NO_VALUE_FOR_REQUIRED_ARG = 654 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SUBCMDPARSER_NO_VALUE_FOR_REQUIRED_ARG_109", 109); 655 656 /** 657 * The provided string "%s" cannot be decoded as an LDAP URL because it does not contain the necessary :// component to separate the scheme from the rest of the URL 658 */ 659 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPURL_NO_COLON_SLASH_SLASH = 660 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_NO_COLON_SLASH_SLASH_110", 110); 661 662 /** 663 * The provided string "%s" cannot be decoded as an LDAP URL because it does not contain a protocol scheme 664 */ 665 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPURL_NO_SCHEME = 666 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_NO_SCHEME_111", 111); 667 668 /** 669 * The provided string "%s" cannot be decoded as an LDAP URL because it does not contain a host before the colon to specify the port number 670 */ 671 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPURL_NO_HOST = 672 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_NO_HOST_112", 112); 673 674 /** 675 * The provided string "%s" cannot be decoded as an LDAP URL because it does not contain a port number after the colon following the host 676 */ 677 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPURL_NO_PORT = 678 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_NO_PORT_113", 113); 679 680 /** 681 * The provided string "%s" cannot be decoded as an LDAP URL because the port number portion %s cannot be decoded as an integer 682 */ 683 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAPURL_CANNOT_DECODE_PORT = 684 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_CANNOT_DECODE_PORT_114", 114); 685 686 /** 687 * The provided string "%s" cannot be decoded as an LDAP URL because the provided port number %d is not within the valid range between 1 and 65535 688 */ 689 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAPURL_INVALID_PORT = 690 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_INVALID_PORT_115", 115); 691 692 /** 693 * The provided string "%s" cannot be decoded as an LDAP URL because the scope string %s was not one of the allowed values of base, one, sub, or subordinate 694 */ 695 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAPURL_INVALID_SCOPE_STRING = 696 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_INVALID_SCOPE_STRING_116", 116); 697 698 /** 699 * The provided URL component "%s" could not be decoded because the percent character at byte %d was not followed by two hexadecimal digits 700 */ 701 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAPURL_PERCENT_TOO_CLOSE_TO_END = 702 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_PERCENT_TOO_CLOSE_TO_END_117", 117); 703 704 /** 705 * The provided URL component "%s" could not be decoded because the character at byte %d was not a valid hexadecimal digit 706 */ 707 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAPURL_INVALID_HEX_BYTE = 708 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_INVALID_HEX_BYTE_118", 118); 709 710 /** 711 * An error occurred while attempting to represent a byte array as a UTF-8 string during the course of decoding a portion of an LDAP URL: %s 712 */ 713 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPURL_CANNOT_CREATE_UTF8_STRING = 714 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAPURL_CANNOT_CREATE_UTF8_STRING_119", 119); 715 716 /** 717 * Cannot decode value "%s" as a named character set because it does not contain a colon to separate the name from the set of characters 718 */ 719 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CHARSET_NO_COLON = 720 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CHARSET_NO_COLON_120", 120); 721 722 /** 723 * The named character set is invalid because it does not contain a name 724 */ 725 public static final LocalizableMessageDescriptor.Arg0 ERR_CHARSET_CONSTRUCTOR_NO_NAME = 726 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_CHARSET_CONSTRUCTOR_NO_NAME_121", 121); 727 728 /** 729 * The named character set is invalid because the provide name "%s" has an invalid character at position %d. Only ASCII alphabetic characters are allowed in the name 730 */ 731 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_CHARSET_CONSTRUCTOR_INVALID_NAME_CHAR = 732 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "ERR_CHARSET_CONSTRUCTOR_INVALID_NAME_CHAR_122", 122); 733 734 /** 735 * Cannot decode value "%s" as a named character set because it does not contain a name to use for the character set 736 */ 737 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CHARSET_NO_NAME = 738 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CHARSET_NO_NAME_123", 123); 739 740 /** 741 * Cannot decode value "%s" as a named character set because there are no characters to include in the set 742 */ 743 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CHARSET_NO_CHARS = 744 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CHARSET_NO_CHARS_124", 124); 745 746 /** 747 * %d seconds 748 */ 749 public static final LocalizableMessageDescriptor.Arg1<Number> INFO_TIME_IN_SECONDS = 750 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "INFO_TIME_IN_SECONDS_125", 125); 751 752 /** 753 * %d minutes, %d seconds 754 */ 755 public static final LocalizableMessageDescriptor.Arg2<Number, Number> INFO_TIME_IN_MINUTES_SECONDS = 756 new LocalizableMessageDescriptor.Arg2<Number, Number>(UtilityMessages.class, RESOURCE, "INFO_TIME_IN_MINUTES_SECONDS_126", 126); 757 758 /** 759 * %d hours, %d minutes, %d seconds 760 */ 761 public static final LocalizableMessageDescriptor.Arg3<Number, Number, Number> INFO_TIME_IN_HOURS_MINUTES_SECONDS = 762 new LocalizableMessageDescriptor.Arg3<Number, Number, Number>(UtilityMessages.class, RESOURCE, "INFO_TIME_IN_HOURS_MINUTES_SECONDS_127", 127); 763 764 /** 765 * %d days, %d hours, %d minutes, %d seconds 766 */ 767 public static final LocalizableMessageDescriptor.Arg4<Number, Number, Number, Number> INFO_TIME_IN_DAYS_HOURS_MINUTES_SECONDS = 768 new LocalizableMessageDescriptor.Arg4<Number, Number, Number, Number>(UtilityMessages.class, RESOURCE, "INFO_TIME_IN_DAYS_HOURS_MINUTES_SECONDS_128", 128); 769 770 /** 771 * Unable to set permissions for file %s because it does not exist 772 */ 773 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_FILEPERM_SET_NO_SUCH_FILE = 774 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_FILEPERM_SET_NO_SUCH_FILE_141", 141); 775 776 /** 777 * One or more exceptions were thrown in the process of updating the file permissions for %s. Some of the permissions for the file may have been altered 778 */ 779 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_FILEPERM_SET_JAVA_EXCEPTION = 780 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_FILEPERM_SET_JAVA_EXCEPTION_143", 143); 781 782 /** 783 * One or more updates to the file permissions for %s failed, but at least one update was successful. Some of the permissions for the file may have been altered 784 */ 785 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_FILEPERM_SET_JAVA_FAILED_ALTERED = 786 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_FILEPERM_SET_JAVA_FAILED_ALTERED_144", 144); 787 788 /** 789 * All of the attempts to update the file permissions for %s failed. The file should be left with its original permissions 790 */ 791 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_FILEPERM_SET_JAVA_FAILED_UNALTERED = 792 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_FILEPERM_SET_JAVA_FAILED_UNALTERED_145", 145); 793 794 /** 795 * The provided string %s does not represent a valid UNIX file mode. UNIX file modes must be a three-character string in which each character is a numeric digit between zero and seven 796 */ 797 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_FILEPERM_INVALID_UNIX_MODE_STRING = 798 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_FILEPERM_INVALID_UNIX_MODE_STRING_146", 146); 799 800 /** 801 * The %s command will not be allowed because the Directory Server has been configured to refuse the use of the exec method 802 */ 803 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_EXEC_DISABLED = 804 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_EXEC_DISABLED_147", 147); 805 806 /** 807 * Global Options: 808 */ 809 public static final LocalizableMessageDescriptor.Arg0 INFO_GLOBAL_OPTIONS = 810 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_GLOBAL_OPTIONS_149", 149); 811 812 /** 813 * See "%s --help" 814 */ 815 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_GLOBAL_OPTIONS_REFERENCE = 816 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_GLOBAL_OPTIONS_REFERENCE_150", 150); 817 818 /** 819 * SubCommand Options: 820 */ 821 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMD_OPTIONS = 822 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMD_OPTIONS_151", 151); 823 824 /** 825 * Usage: 826 */ 827 public static final LocalizableMessageDescriptor.Arg0 INFO_ARGPARSER_USAGE = 828 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_ARGPARSER_USAGE_152", 152); 829 830 /** 831 * Available subcommands: 832 */ 833 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_SUBCMD_HEADING = 834 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_SUBCMD_HEADING_153", 153); 835 836 /** 837 * The global options are: 838 */ 839 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_GLOBAL_HEADING = 840 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_GLOBAL_HEADING_155", 155); 841 842 /** 843 * See "%s --help" to get more usage help 844 */ 845 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_GLOBAL_HELP_REFERENCE = 846 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_GLOBAL_HELP_REFERENCE_156", 156); 847 848 /** 849 * Failed to rename file %s to %s 850 */ 851 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_RENAMEFILE_CANNOT_RENAME = 852 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_RENAMEFILE_CANNOT_RENAME_157", 157); 853 854 /** 855 * Failed to delete target file %s. Make sure the file is not currently in use by this or another application 856 */ 857 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_RENAMEFILE_CANNOT_DELETE_TARGET = 858 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_RENAMEFILE_CANNOT_DELETE_TARGET_158", 158); 859 860 /** 861 * Refusing to trust client or issuer certificate '%s' because it expired on %s 862 */ 863 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_EXPIRED = 864 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_EXPIRED_159", 159); 865 866 /** 867 * Refusing to trust client or issuer certificate '%s' because it is not valid until %s 868 */ 869 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_NOT_YET_VALID = 870 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_NOT_YET_VALID_160", 160); 871 872 /** 873 * Refusing to trust server or issuer certificate '%s' because it expired on %s 874 */ 875 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_EXPIRED = 876 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_EXPIRED_161", 161); 877 878 /** 879 * Refusing to trust server or issuer certificate '%s' because it is not valid until %s 880 */ 881 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_NOT_YET_VALID = 882 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_NOT_YET_VALID_162", 162); 883 884 /** 885 * Entry %s read from LDIF starting at line %d includes value "%s" for attribute %s that is invalid according to the associated syntax: %s 886 */ 887 public static final LocalizableMessageDescriptor.Arg5<Object, Number, Object, Object, Object> WARN_LDIF_VALUE_VIOLATES_SYNTAX = 888 new LocalizableMessageDescriptor.Arg5<Object, Number, Object, Object, Object>(UtilityMessages.class, RESOURCE, "WARN_LDIF_VALUE_VIOLATES_SYNTAX_163", 163); 889 890 /** 891 * The specified skip file %s already exists and the import configuration indicates that no attempt should be made to append to or replace the file 892 */ 893 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SKIP_FILE_EXISTS = 894 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_SKIP_FILE_EXISTS_164", 164); 895 896 /** 897 * Skipping entry %s because the DN is not one that should be included based on the include and exclude branches 898 */ 899 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_SKIP = 900 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_SKIP_165", 165); 901 902 /** 903 * To get the list of subcommands use: 904 */ 905 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_SUBCMD_HELP_HEADING = 906 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_SUBCMD_HELP_HEADING_166", 166); 907 908 /** 909 * The Directory Server cannot be started because it is already running 910 */ 911 public static final LocalizableMessageDescriptor.Arg0 ERR_EMBEDUTILS_SERVER_ALREADY_RUNNING = 912 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_EMBEDUTILS_SERVER_ALREADY_RUNNING_167", 167); 913 914 /** 915 * {options} 916 */ 917 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_OPTIONS = 918 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_OPTIONS_168", 168); 919 920 /** 921 * {subcommand} {options} 922 */ 923 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_SUBCMD_AND_OPTIONS = 924 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_SUBCMD_AND_OPTIONS_169", 169); 925 926 /** 927 * where {options} include: 928 */ 929 public static final LocalizableMessageDescriptor.Arg0 INFO_SUBCMDPARSER_WHERE_OPTIONS_INCLUDE = 930 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_SUBCMDPARSER_WHERE_OPTIONS_INCLUDE_170", 170); 931 932 /** 933 * Send an e-mail message via SMTP 934 */ 935 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_TOOL_DESCRIPTION = 936 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_TOOL_DESCRIPTION_171", 171); 937 938 /** 939 * The address of the SMTP server to use to send the message 940 */ 941 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_HOST_DESCRIPTION = 942 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_HOST_DESCRIPTION_172", 172); 943 944 /** 945 * The address to use for the message sender 946 */ 947 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_FROM_DESCRIPTION = 948 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_FROM_DESCRIPTION_173", 173); 949 950 /** 951 * The address to use for the message recipient 952 */ 953 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_TO_DESCRIPTION = 954 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_TO_DESCRIPTION_174", 174); 955 956 /** 957 * The subject to use for the e-mail message 958 */ 959 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_SUBJECT_DESCRIPTION = 960 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_SUBJECT_DESCRIPTION_175", 175); 961 962 /** 963 * The path to the file containing the text for the message body 964 */ 965 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_BODY_DESCRIPTION = 966 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_BODY_DESCRIPTION_176", 176); 967 968 /** 969 * The path to a file to attach to the e-mail message 970 */ 971 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_ATTACH_DESCRIPTION = 972 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_ATTACH_DESCRIPTION_177", 177); 973 974 /** 975 * Display this usage information 976 */ 977 public static final LocalizableMessageDescriptor.Arg0 INFO_EMAIL_HELP_DESCRIPTION = 978 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_EMAIL_HELP_DESCRIPTION_178", 178); 979 980 /** 981 * The file %s specified as the body file for the e-mail message does not exist 982 */ 983 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_EMAIL_NO_SUCH_BODY_FILE = 984 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_EMAIL_NO_SUCH_BODY_FILE_181", 181); 985 986 /** 987 * An error occurred while attempting to process message body file %s: %s 988 */ 989 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EMAIL_CANNOT_PROCESS_BODY_FILE = 990 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EMAIL_CANNOT_PROCESS_BODY_FILE_182", 182); 991 992 /** 993 * The attachment file %s does not exist 994 */ 995 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_EMAIL_NO_SUCH_ATTACHMENT_FILE = 996 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_EMAIL_NO_SUCH_ATTACHMENT_FILE_183", 183); 997 998 /** 999 * An error occurred while trying to attach file %s: %s 1000 */ 1001 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_EMAIL_CANNOT_ATTACH_FILE = 1002 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_EMAIL_CANNOT_ATTACH_FILE_184", 184); 1003 1004 /** 1005 * An error occurred while trying to send the e-mail message: %s 1006 */ 1007 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_EMAIL_CANNOT_SEND_MESSAGE = 1008 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_EMAIL_CANNOT_SEND_MESSAGE_185", 185); 1009 1010 /** 1011 * This utility can be used to encode and decode information using base64 1012 */ 1013 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_TOOL_DESCRIPTION = 1014 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_TOOL_DESCRIPTION_186", 186); 1015 1016 /** 1017 * Display this usage information 1018 */ 1019 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_HELP_DESCRIPTION = 1020 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_HELP_DESCRIPTION_187", 187); 1021 1022 /** 1023 * Decode base64-encoded information into raw data. When no options are specified, this subcommand reads from standard input and writes to standard output 1024 */ 1025 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_DECODE_DESCRIPTION = 1026 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_DECODE_DESCRIPTION_188", 188); 1027 1028 /** 1029 * Encode raw data using base64. When no options are specified, this subcommand reads from standard input and writes to standard output 1030 */ 1031 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_ENCODE_DESCRIPTION = 1032 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_ENCODE_DESCRIPTION_189", 189); 1033 1034 /** 1035 * The base64-encoded data to be decoded 1036 */ 1037 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_ENCODED_DATA_DESCRIPTION = 1038 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_ENCODED_DATA_DESCRIPTION_190", 190); 1039 1040 /** 1041 * The path to a file containing the base64-encoded data to be decoded 1042 */ 1043 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_ENCODED_FILE_DESCRIPTION = 1044 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_ENCODED_FILE_DESCRIPTION_191", 191); 1045 1046 /** 1047 * The raw data to be base64 encoded 1048 */ 1049 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_RAW_DATA_DESCRIPTION = 1050 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_RAW_DATA_DESCRIPTION_192", 192); 1051 1052 /** 1053 * The path to a file containing the raw data to be base64 encoded 1054 */ 1055 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_RAW_FILE_DESCRIPTION = 1056 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_RAW_FILE_DESCRIPTION_193", 193); 1057 1058 /** 1059 * The path to a file to which the base64-encoded data should be written 1060 */ 1061 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_TO_ENCODED_FILE_DESCRIPTION = 1062 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_TO_ENCODED_FILE_DESCRIPTION_194", 194); 1063 1064 /** 1065 * The path to a file to which the raw base64-decoded data should be written 1066 */ 1067 public static final LocalizableMessageDescriptor.Arg0 INFO_BASE64_TO_RAW_FILE_DESCRIPTION = 1068 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_BASE64_TO_RAW_FILE_DESCRIPTION_195", 195); 1069 1070 /** 1071 * An error occurred while attempting to read the raw data to encode: %s 1072 */ 1073 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_CANNOT_READ_RAW_DATA = 1074 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_CANNOT_READ_RAW_DATA_196", 196); 1075 1076 /** 1077 * An error occurred while attempting to write the encoded data: %s 1078 */ 1079 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_CANNOT_WRITE_ENCODED_DATA = 1080 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_CANNOT_WRITE_ENCODED_DATA_197", 197); 1081 1082 /** 1083 * An error occurred while attempting to read the base64-encoded data: %s 1084 */ 1085 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_CANNOT_READ_ENCODED_DATA = 1086 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_CANNOT_READ_ENCODED_DATA_198", 198); 1087 1088 /** 1089 * An error occurred while attempting to write the decoded data: %s 1090 */ 1091 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_CANNOT_WRITE_RAW_DATA = 1092 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_CANNOT_WRITE_RAW_DATA_199", 199); 1093 1094 /** 1095 * Unknown subcommand %s 1096 */ 1097 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BASE64_UNKNOWN_SUBCOMMAND = 1098 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BASE64_UNKNOWN_SUBCOMMAND_200", 200); 1099 1100 /** 1101 * no 1102 */ 1103 public static final LocalizableMessageDescriptor.Arg0 INFO_GENERAL_NO = 1104 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_GENERAL_NO_201", 201); 1105 1106 /** 1107 * yes 1108 */ 1109 public static final LocalizableMessageDescriptor.Arg0 INFO_GENERAL_YES = 1110 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_GENERAL_YES_202", 202); 1111 1112 /** 1113 * Invalid response. Please enter "%s" or "%s" 1114 */ 1115 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONSOLE_APP_CONFIRM = 1116 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CONSOLE_APP_CONFIRM_203", 203); 1117 1118 /** 1119 * help 1120 */ 1121 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_HELP = 1122 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_HELP_204", 204); 1123 1124 /** 1125 * ? 1126 */ 1127 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_HELP_KEY = 1128 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_HELP_KEY_205", 205); 1129 1130 /** 1131 * cancel 1132 */ 1133 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_CANCEL = 1134 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_CANCEL_206", 206); 1135 1136 /** 1137 * c 1138 */ 1139 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_CANCEL_KEY = 1140 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_CANCEL_KEY_207", 207); 1141 1142 /** 1143 * quit 1144 */ 1145 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_QUIT = 1146 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_QUIT_208", 208); 1147 1148 /** 1149 * q 1150 */ 1151 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_QUIT_KEY = 1152 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_QUIT_KEY_209", 209); 1153 1154 /** 1155 * %d) 1156 */ 1157 public static final LocalizableMessageDescriptor.Arg1<Number> INFO_MENU_NUMERIC_OPTION = 1158 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "INFO_MENU_NUMERIC_OPTION_210", 210); 1159 1160 /** 1161 * %c) 1162 */ 1163 public static final LocalizableMessageDescriptor.Arg1<Character> INFO_MENU_CHAR_OPTION = 1164 new LocalizableMessageDescriptor.Arg1<Character>(UtilityMessages.class, RESOURCE, "INFO_MENU_CHAR_OPTION_211", 211); 1165 1166 /** 1167 * Invalid response. Please enter one or more valid menu options 1168 */ 1169 public static final LocalizableMessageDescriptor.Arg0 ERR_MENU_BAD_CHOICE_MULTI = 1170 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_MENU_BAD_CHOICE_MULTI_212", 212); 1171 1172 /** 1173 * Invalid response. Please enter a valid menu option 1174 */ 1175 public static final LocalizableMessageDescriptor.Arg0 ERR_MENU_BAD_CHOICE_SINGLE = 1176 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_MENU_BAD_CHOICE_SINGLE_213", 213); 1177 1178 /** 1179 * The option "%s" was specified more than once. Please enter one or more valid menu options 1180 */ 1181 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MENU_BAD_CHOICE_MULTI_DUPE = 1182 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_MENU_BAD_CHOICE_MULTI_DUPE_214", 214); 1183 1184 /** 1185 * Enter choice: 1186 */ 1187 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_PROMPT_SINGLE = 1188 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_SINGLE_215", 215); 1189 1190 /** 1191 * Enter choice [%s]: 1192 */ 1193 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_MENU_PROMPT_SINGLE_DEFAULT = 1194 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_SINGLE_DEFAULT_216", 216); 1195 1196 /** 1197 * Enter one or more choices separated by commas: 1198 */ 1199 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_PROMPT_MULTI = 1200 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_MULTI_217", 217); 1201 1202 /** 1203 * Enter one or more choices separated by commas [%s]: 1204 */ 1205 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_MENU_PROMPT_MULTI_DEFAULT = 1206 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_MULTI_DEFAULT_218", 218); 1207 1208 /** 1209 * Press RETURN to continue 1210 */ 1211 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_PROMPT_RETURN_TO_CONTINUE = 1212 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_RETURN_TO_CONTINUE_219", 219); 1213 1214 /** 1215 * %s (%s / %s) [%s]: 1216 */ 1217 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> INFO_MENU_PROMPT_CONFIRM = 1218 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "INFO_MENU_PROMPT_CONFIRM_220", 220); 1219 1220 /** 1221 * The response could not be read from the console due to the following error: %s 1222 */ 1223 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONSOLE_INPUT_ERROR = 1224 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CONSOLE_INPUT_ERROR_221", 221); 1225 1226 /** 1227 * back 1228 */ 1229 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_BACK = 1230 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_BACK_222", 222); 1231 1232 /** 1233 * b 1234 */ 1235 public static final LocalizableMessageDescriptor.Arg0 INFO_MENU_OPTION_BACK_KEY = 1236 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_MENU_OPTION_BACK_KEY_223", 223); 1237 1238 /** 1239 * Rejecting entry %s because it was rejected by a plugin 1240 */ 1241 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_REJECTED_BY_PLUGIN_NOMESSAGE = 1242 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_REJECTED_BY_PLUGIN_NOMESSAGE_224", 224); 1243 1244 /** 1245 * Rejecting entry %s because it was rejected by a plugin: %s 1246 */ 1247 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_REJECTED_BY_PLUGIN = 1248 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_REJECTED_BY_PLUGIN_225", 225); 1249 1250 /** 1251 * LDAP 1252 */ 1253 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_LDAP = 1254 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_LDAP_226", 226); 1255 1256 /** 1257 * LDAP with SSL 1258 */ 1259 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_USE_SSL = 1260 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_USE_SSL_227", 227); 1261 1262 /** 1263 * LDAP with StartTLS 1264 */ 1265 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_USE_START_TLS = 1266 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_USE_START_TLS_228", 228); 1267 1268 /** 1269 * Automatically trust 1270 */ 1271 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_USE_TRUST_ALL = 1272 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_USE_TRUST_ALL_229", 229); 1273 1274 /** 1275 * Truststore path: 1276 */ 1277 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PATH = 1278 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PATH_230", 230); 1279 1280 /** 1281 * Password for truststore '%s': 1282 */ 1283 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PASSWORD = 1284 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PASSWORD_231", 231); 1285 1286 /** 1287 * Keystore path: 1288 */ 1289 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PATH = 1290 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PATH_233", 233); 1291 1292 /** 1293 * Password for keystore '%s': 1294 */ 1295 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PASSWORD = 1296 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PASSWORD_234", 234); 1297 1298 /** 1299 * >>>> Specify OpenDJ LDAP connection parameters 1300 */ 1301 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_HEADING_CONNECTION_PARAMETERS = 1302 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_HEADING_CONNECTION_PARAMETERS_236", 236); 1303 1304 /** 1305 * The hostname "%s" could not be resolved. Please check you have provided the correct address 1306 */ 1307 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONN_BAD_HOST_NAME = 1308 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAP_CONN_BAD_HOST_NAME_237", 237); 1309 1310 /** 1311 * Invalid port number "%s". Please enter a valid port number between 1 and 65535 1312 */ 1313 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONN_BAD_PORT_NUMBER = 1314 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAP_CONN_BAD_PORT_NUMBER_238", 238); 1315 1316 /** 1317 * Directory server hostname or IP address [%s]: 1318 */ 1319 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_PROMPT_HOST_NAME = 1320 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_HOST_NAME_239", 239); 1321 1322 /** 1323 * Directory server port number [%d]: 1324 */ 1325 public static final LocalizableMessageDescriptor.Arg1<Number> INFO_LDAP_CONN_PROMPT_PORT_NUMBER = 1326 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_PORT_NUMBER_240", 240); 1327 1328 /** 1329 * Administrator user bind DN [%s]: 1330 */ 1331 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_PROMPT_BIND_DN = 1332 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_BIND_DN_241", 241); 1333 1334 /** 1335 * How do you want to connect? 1336 */ 1337 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_USE_SECURE_CTX = 1338 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_USE_SECURE_CTX_242", 242); 1339 1340 /** 1341 * %d 1342 */ 1343 public static final LocalizableMessageDescriptor.Arg1<Number> INFO_LDAP_CONN_PROMPT_SECURITY_PROTOCOL_DEFAULT_CHOICE = 1344 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_PROTOCOL_DEFAULT_CHOICE_243", 243); 1345 1346 /** 1347 * The provided path is not valid 1348 */ 1349 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_CONN_PROMPT_SECURITY_INVALID_FILE_PATH = 1350 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_LDAP_CONN_PROMPT_SECURITY_INVALID_FILE_PATH_244", 244); 1351 1352 /** 1353 * How do you want to trust the server certificate? 1354 */ 1355 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_METHOD = 1356 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_METHOD_245", 245); 1357 1358 /** 1359 * Use a truststore 1360 */ 1361 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE = 1362 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_246", 246); 1363 1364 /** 1365 * Manually validate 1366 */ 1367 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_MANUAL_CHECK = 1368 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_MANUAL_CHECK_247", 247); 1369 1370 /** 1371 * Server Certificate: 1372 */ 1373 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_SERVER_CERTIFICATE = 1374 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_SERVER_CERTIFICATE_248", 248); 1375 1376 /** 1377 * %s 1378 */ 1379 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE = 1380 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_249", 249); 1381 1382 /** 1383 * Do you trust this server certificate? 1384 */ 1385 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION = 1386 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_250", 250); 1387 1388 /** 1389 * No 1390 */ 1391 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_NO = 1392 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_NO_251", 251); 1393 1394 /** 1395 * Yes, for this session only 1396 */ 1397 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_SESSION = 1398 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_SESSION_252", 252); 1399 1400 /** 1401 * Yes, also add it to a truststore 1402 */ 1403 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_ALWAYS = 1404 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_ALWAYS_253", 253); 1405 1406 /** 1407 * View certificate details 1408 */ 1409 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_DETAILS = 1410 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_DETAILS_254", 254); 1411 1412 /** 1413 * User DN : %s 1414 */ 1415 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_USER_DN = 1416 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_USER_DN_255", 255); 1417 1418 /** 1419 * Validity : From '%s'%n To '%s' 1420 */ 1421 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_VALIDITY = 1422 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_VALIDITY_256", 256); 1423 1424 /** 1425 * Issuer : %s 1426 */ 1427 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_ISSUER = 1428 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_ISSUER_257", 257); 1429 1430 /** 1431 * Which certificate do you want to use? 1432 */ 1433 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIASES = 1434 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIASES_258", 258); 1435 1436 /** 1437 * %s (%s) 1438 */ 1439 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIAS = 1440 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIAS_259", 259); 1441 1442 /** 1443 * %s [%s]: 1444 */ 1445 public static final LocalizableMessageDescriptor.Arg2<Object, Object> INFO_PROMPT_SINGLE_DEFAULT = 1446 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "INFO_PROMPT_SINGLE_DEFAULT_261", 261); 1447 1448 /** 1449 * Global Administrator User ID [%s]: 1450 */ 1451 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_PROMPT_ADMINISTRATOR_UID = 1452 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_PROMPT_ADMINISTRATOR_UID_262", 262); 1453 1454 /** 1455 * Global Administrator User ID, or bind DN if no Global Administrator is defined [%s]: 1456 */ 1457 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDAP_CONN_GLOBAL_ADMINISTRATOR_OR_BINDDN_PROMPT = 1458 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_LDAP_CONN_GLOBAL_ADMINISTRATOR_OR_BINDDN_PROMPT_263", 263); 1459 1460 /** 1461 * Usage: java %s {options} 1462 */ 1463 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_ARGPARSER_USAGE_JAVA_CLASSNAME = 1464 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_ARGPARSER_USAGE_JAVA_CLASSNAME_264", 264); 1465 1466 /** 1467 * Usage: %s {options} 1468 */ 1469 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_ARGPARSER_USAGE_JAVA_SCRIPTNAME = 1470 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_ARGPARSER_USAGE_JAVA_SCRIPTNAME_265", 265); 1471 1472 /** 1473 * {trailing-arguments} 1474 */ 1475 public static final LocalizableMessageDescriptor.Arg0 INFO_ARGPARSER_USAGE_TRAILINGARGS = 1476 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "INFO_ARGPARSER_USAGE_TRAILINGARGS_266", 266); 1477 1478 /** 1479 * Confirmation tries limit reached (%d) 1480 */ 1481 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_CONFIRMATION_TRIES_LIMIT_REACHED = 1482 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "ERR_CONFIRMATION_TRIES_LIMIT_REACHED_267", 267); 1483 1484 /** 1485 * Unexpected error. Details: %s 1486 */ 1487 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_UNEXPECTED = 1488 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_UNEXPECTED_268", 268); 1489 1490 /** 1491 * Input tries limit reached (%d) 1492 */ 1493 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_TRIES_LIMIT_REACHED = 1494 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "ERR_TRIES_LIMIT_REACHED_269", 269); 1495 1496 /** 1497 * Directory server administration port number [%d]: 1498 */ 1499 public static final LocalizableMessageDescriptor.Arg1<Number> INFO_ADMIN_CONN_PROMPT_PORT_NUMBER = 1500 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "INFO_ADMIN_CONN_PROMPT_PORT_NUMBER_270", 270); 1501 1502 /** 1503 * Unable to parse LDIF entry %s starting at line %d because it has an invalid binary option for attribute %s 1504 */ 1505 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_LDIF_INVALID_ATTR_OPTION = 1506 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_INVALID_ATTR_OPTION_271", 271); 1507 1508 /** 1509 * Invalid key store path for PKCS11 keystore, it must be %s 1510 */ 1511 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_INVALID_PKCS11_PATH = 1512 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_INVALID_PKCS11_PATH_272", 272); 1513 1514 /** 1515 * Key store path %s exists but is not a file 1516 */ 1517 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_INVALID_KEYSTORE_PATH = 1518 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_INVALID_KEYSTORE_PATH_273", 273); 1519 1520 /** 1521 * Parent directory for key store path %s does not exist or is not a directory 1522 */ 1523 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_INVALID_PARENT = 1524 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_INVALID_PARENT_274", 274); 1525 1526 /** 1527 * Invalid key store type, it must be one of the following: %s, %s, %s or %s 1528 */ 1529 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_CERTMGR_INVALID_STORETYPE = 1530 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_INVALID_STORETYPE_275", 275); 1531 1532 /** 1533 * Keystore does not exist, it must exist to retrieve an alias, delete an alias or generate a certificate request 1534 */ 1535 public static final LocalizableMessageDescriptor.Arg0 ERR_CERTMGR_KEYSTORE_NONEXISTANT = 1536 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_KEYSTORE_NONEXISTANT_276", 276); 1537 1538 /** 1539 * Validity value %d is invalid, it must be a positive integer 1540 */ 1541 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_CERTMGR_VALIDITY = 1542 new LocalizableMessageDescriptor.Arg1<Number>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_VALIDITY_277", 277); 1543 1544 /** 1545 * A certificate with the alias %s already exists in the key store 1546 */ 1547 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_ALIAS_ALREADY_EXISTS = 1548 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_ALIAS_ALREADY_EXISTS_278", 278); 1549 1550 /** 1551 * The following error occurred when adding a certificate with alias %s to the keystore: %s 1552 */ 1553 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CERTMGR_ADD_CERT = 1554 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_ADD_CERT_279", 279); 1555 1556 /** 1557 * The alias %s cannot be added to the keystore for one of the following reasons: it already exists in the keystore, or, it is not an instance of a trusted certificate class 1558 */ 1559 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_ALIAS_INVALID = 1560 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_ALIAS_INVALID_280", 280); 1561 1562 /** 1563 * The alias %s is an instance of a private key entry, which is not supported being added to the keystore at this time 1564 */ 1565 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_CERT_REPLIES_INVALID = 1566 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_CERT_REPLIES_INVALID_281", 281); 1567 1568 /** 1569 * The following error occurred when deleting a certificate with alias %s from the keystore: %s 1570 */ 1571 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CERTMGR_DELETE_ALIAS = 1572 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_DELETE_ALIAS_282", 282); 1573 1574 /** 1575 * The following error occurred when generating a self-signed certificate using the alias %s: %s 1576 */ 1577 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CERTMGR_GEN_SELF_SIGNED_CERT = 1578 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_GEN_SELF_SIGNED_CERT_284", 284); 1579 1580 /** 1581 * The certificate file %s is invalid because it does not exists, or exists, but is not a file 1582 */ 1583 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_INVALID_CERT_FILE = 1584 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_INVALID_CERT_FILE_285", 285); 1585 1586 /** 1587 * The alias %s cannot be deleted from the keystore because it does not exist 1588 */ 1589 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_ALIAS_CAN_NOT_DELETE = 1590 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_ALIAS_CAN_NOT_DELETE_286", 286); 1591 1592 /** 1593 * The trusted certificate associated with alias %s could not be added to keystore because of the following reason: %s 1594 */ 1595 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CERTMGR_TRUSTED_CERT = 1596 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_TRUSTED_CERT_292", 292); 1597 1598 /** 1599 * The %s is invalid because it is null 1600 */ 1601 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_FILE_NAME_INVALID = 1602 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_FILE_NAME_INVALID_293", 293); 1603 1604 /** 1605 * The argument %s is invalid because it is either null, or has zero length 1606 */ 1607 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_VALUE_INVALID = 1608 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_VALUE_INVALID_294", 294); 1609 1610 /** 1611 * A security class cannot be found in this JVM because of the following reason: %s 1612 */ 1613 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_CLASS_NOT_FOUND = 1614 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_CLASS_NOT_FOUND_295", 295); 1615 1616 /** 1617 * The security classes could not be initialized because of the following reason: %s 1618 */ 1619 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_SECURITY = 1620 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_SECURITY_296", 296); 1621 1622 /** 1623 * A method needed in the security classes could not be located because of the following reason: %s 1624 */ 1625 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_NO_METHOD = 1626 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_NO_METHOD_297", 297); 1627 1628 /** 1629 * The CertAndKeyGen security class cannot be found, consider setting -D%s= 1630 */ 1631 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CERTMGR_CERTGEN_NOT_FOUND = 1632 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_CERTMGR_CERTGEN_NOT_FOUND_298", 298); 1633 1634 /** 1635 * Default value: %s 1636 */ 1637 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_ARGPARSER_USAGE_DEFAULT_VALUE = 1638 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "INFO_ARGPARSER_USAGE_DEFAULT_VALUE_299", 299); 1639 1640 /** 1641 * An error occurred while setting file permissions for the LDIF file %s: %s 1642 */ 1643 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_EXPORT_LDIF_SET_PERMISSION_FAILED = 1644 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "WARN_EXPORT_LDIF_SET_PERMISSION_FAILED_300", 300); 1645 1646 /** 1647 * Skipping entry %s because the following error was received when reading its attributes: %s 1648 */ 1649 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_READ_ATTR_SKIP = 1650 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_LDIF_READ_ATTR_SKIP_301", 301); 1651 1652 /** 1653 * Invalid integer number "%s". Please enter a valid integer 1654 */ 1655 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONN_BAD_INTEGER = 1656 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_LDAP_CONN_BAD_INTEGER_302", 302); 1657 1658 /** 1659 * Invalid subcommand 1660 */ 1661 public static final LocalizableMessageDescriptor.Arg0 ERR_ARG_SUBCOMMAND_INVALID = 1662 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "ERR_ARG_SUBCOMMAND_INVALID_303", 303); 1663 1664 /** 1665 * Unable to gather information on Filesystem APIs, disk monitoring will be verbose 1666 */ 1667 public static final LocalizableMessageDescriptor.Arg0 WARN_UNABLE_TO_USE_FILESYSTEM_API = 1668 new LocalizableMessageDescriptor.Arg0(UtilityMessages.class, RESOURCE, "WARN_UNABLE_TO_USE_FILESYSTEM_API_304", 304); 1669 1670 /** 1671 * An error occurred while attempting to obtain the %s MAC provider to create the signed hash for the backup: %s 1672 */ 1673 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_GET_MAC = 1674 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_GET_MAC_305", 305); 1675 1676 /** 1677 * An error occurred while attempting to obtain the %s message digest to create the hash for the backup: %s 1678 */ 1679 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_GET_DIGEST = 1680 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_GET_DIGEST_306", 306); 1681 1682 /** 1683 * An error occurred while trying to create the archive file %s in directory %s for the backup %s: %s 1684 */ 1685 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_BACKUP_CANNOT_CREATE_ARCHIVE_FILE = 1686 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_CREATE_ARCHIVE_FILE_307", 307); 1687 1688 /** 1689 * An error occurred while attempting to obtain the cipher to use to encrypt the backup: %s 1690 */ 1691 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BACKUP_CANNOT_GET_CIPHER = 1692 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_GET_CIPHER_308", 308); 1693 1694 /** 1695 * %s backup %s 1696 */ 1697 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_ZIP_COMMENT = 1698 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_ZIP_COMMENT_309", 309); 1699 1700 /** 1701 * An error occurred while attempting to obtain a list of the files in directory %s to include in the backup: %s 1702 */ 1703 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_LIST_LOG_FILES = 1704 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_LIST_LOG_FILES_310", 310); 1705 1706 /** 1707 * An error occurred while attempting to back up file %s of backup %s: %s 1708 */ 1709 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_BACKUP_CANNOT_WRITE_ARCHIVE_FILE = 1710 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_WRITE_ARCHIVE_FILE_311", 311); 1711 1712 /** 1713 * An error occurred while trying to close the archive file %s in directory %s: %s 1714 */ 1715 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_BACKUP_CANNOT_CLOSE_ZIP_STREAM = 1716 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_CLOSE_ZIP_STREAM_312", 312); 1717 1718 /** 1719 * The computed hash of backup %s is different to the value computed at time of backup 1720 */ 1721 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BACKUP_UNSIGNED_HASH_ERROR = 1722 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_UNSIGNED_HASH_ERROR_313", 313); 1723 1724 /** 1725 * The computed signed hash of backup %s is different to the value computed at time of backup 1726 */ 1727 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_BACKUP_SIGNED_HASH_ERROR = 1728 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_SIGNED_HASH_ERROR_314", 314); 1729 1730 /** 1731 * The directory %s, containing the files restored from backup, could not be renamed to the directory %s 1732 */ 1733 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CANNOT_RENAME_RESTORE_DIRECTORY = 1734 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_CANNOT_RENAME_RESTORE_DIRECTORY_315", 315); 1735 1736 /** 1737 * An error occurred while attempting to update the backup descriptor file %s with information about the backup: %s 1738 */ 1739 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR = 1740 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR_316", 316); 1741 1742 /** 1743 * An error occurred while attempting to restore the files from backup %s: %s 1744 */ 1745 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_RESTORE = 1746 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_RESTORE_317", 317); 1747 1748 /** 1749 * Backup file has not changed: %s 1750 */ 1751 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_BACKUP_FILE_UNCHANGED = 1752 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "NOTE_BACKUP_FILE_UNCHANGED_318", 318); 1753 1754 /** 1755 * Verifying backup file: %s 1756 */ 1757 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_BACKUP_VERIFY_FILE = 1758 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "NOTE_BACKUP_VERIFY_FILE_319", 319); 1759 1760 /** 1761 * Restored backup file: %s (size %d) 1762 */ 1763 public static final LocalizableMessageDescriptor.Arg2<Object, Number> NOTE_BACKUP_RESTORED_FILE = 1764 new LocalizableMessageDescriptor.Arg2<Object, Number>(UtilityMessages.class, RESOURCE, "NOTE_BACKUP_RESTORED_FILE_320", 320); 1765 1766 /** 1767 * Archived backup file: %s 1768 */ 1769 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_BACKUP_ARCHIVED_FILE = 1770 new LocalizableMessageDescriptor.Arg1<Object>(UtilityMessages.class, RESOURCE, "NOTE_BACKUP_ARCHIVED_FILE_321", 321); 1771 1772 /** 1773 * An error occurred while attempting to obtain the MAC key ID to create the signed hash for the backup %s : %s 1774 */ 1775 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_GET_MAC_KEY_ID = 1776 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_GET_MAC_KEY_ID_323", 323); 1777 1778 /** 1779 * An error occurred while attempting to create a directory to restore the file %s for backup of %s 1780 */ 1781 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_BACKUP_CANNOT_CREATE_DIRECTORY_TO_RESTORE_FILE = 1782 new LocalizableMessageDescriptor.Arg2<Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_CREATE_DIRECTORY_TO_RESTORE_FILE_324", 324); 1783 1784 /** 1785 * An error occurred while attempting to save files from root directory %s to target directory %s, for backup of %s : %s 1786 */ 1787 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object> ERR_BACKUP_CANNOT_SAVE_FILES_BEFORE_RESTORE = 1788 new LocalizableMessageDescriptor.Arg4<Object, Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_SAVE_FILES_BEFORE_RESTORE_325", 325); 1789 1790 /** 1791 * An error occurred while attempting to create a save directory with base path %s before restore of backup of %s: %s 1792 */ 1793 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_BACKUP_CANNOT_CREATE_SAVE_DIRECTORY = 1794 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(UtilityMessages.class, RESOURCE, "ERR_BACKUP_CANNOT_CREATE_SAVE_DIRECTORY_326", 326); 1795 1796}