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.protocol}. This file was generated 008 * automatically by the {@code i18n-maven-plugin} from the property file 009 * {@code org/opends/messages/protocol.properties} and it should not be manually edited. 010 */ 011public final class ProtocolMessages { 012 // The name of the resource bundle. 013 private static final String RESOURCE = "org.opends.messages.protocol"; 014 015 // Prevent instantiation. 016 private ProtocolMessages() { 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 * Cannot decode the provided ASN.1 sequence as an LDAP message because the sequence was null 034 */ 035 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_MESSAGE_DECODE_NULL = 036 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MESSAGE_DECODE_NULL_45", 45); 037 038 /** 039 * Cannot decode the provided ASN.1 sequence as an LDAP message because the first element of the sequence could not be decoded as an integer message ID: %s 040 */ 041 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MESSAGE_DECODE_MESSAGE_ID = 042 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MESSAGE_DECODE_MESSAGE_ID_47", 47); 043 044 /** 045 * Cannot decode the provided ASN.1 sequence as an LDAP message because the second element of the sequence could not be decoded as the protocol op: %s 046 */ 047 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MESSAGE_DECODE_PROTOCOL_OP = 048 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MESSAGE_DECODE_PROTOCOL_OP_48", 48); 049 050 /** 051 * Cannot decode the provided ASN.1 sequence as an LDAP message because the third element of the sequence could not be decoded as the set of controls: %s 052 */ 053 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MESSAGE_DECODE_CONTROLS = 054 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MESSAGE_DECODE_CONTROLS_49", 49); 055 056 /** 057 * Cannot decode the provided ASN.1 element as an LDAP control because the element could not be decoded as a sequence: %s 058 */ 059 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONTROL_DECODE_SEQUENCE = 060 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONTROL_DECODE_SEQUENCE_51", 51); 061 062 /** 063 * Cannot decode the provided ASN.1 element as an LDAP control because the OID could not be decoded as a string: %s 064 */ 065 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONTROL_DECODE_OID = 066 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONTROL_DECODE_OID_53", 53); 067 068 /** 069 * Cannot decode the provided ASN.1 element as an LDAP control because the criticality could not be decoded as Boolean value: %s 070 */ 071 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONTROL_DECODE_CRITICALITY = 072 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONTROL_DECODE_CRITICALITY_54", 54); 073 074 /** 075 * Cannot decode the provided ASN.1 element as an LDAP control because the value could not be decoded as an octet string: %s 076 */ 077 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONTROL_DECODE_VALUE = 078 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONTROL_DECODE_VALUE_55", 55); 079 080 /** 081 * Cannot decode the provided ASN.1 element as a set of LDAP controls because the element could not be decoded as a sequence: %s 082 */ 083 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONTROL_DECODE_CONTROLS_SEQUENCE = 084 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONTROL_DECODE_CONTROLS_SEQUENCE_58", 58); 085 086 /** 087 * Cannot decode the provided ASN.1 element as an LDAP abandon request protocol op because a problem occurred while trying to obtain the message ID of the operation to abandon: %s 088 */ 089 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ABANDON_REQUEST_DECODE_ID = 090 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ABANDON_REQUEST_DECODE_ID_59", 59); 091 092 /** 093 * Cannot decode the provided ASN.1 element as an LDAP result protocol op because a problem occurred while trying to parse the result sequence: %s 094 */ 095 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_RESULT_DECODE_SEQUENCE = 096 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_RESULT_DECODE_SEQUENCE_60", 60); 097 098 /** 099 * Cannot decode the provided ASN.1 element as an LDAP result protocol op because the first element in the result sequence could not be decoded as an integer result code: %s 100 */ 101 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_RESULT_DECODE_RESULT_CODE = 102 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_RESULT_DECODE_RESULT_CODE_62", 62); 103 104 /** 105 * Cannot decode the provided ASN.1 element as an LDAP result protocol op because the second element in the result sequence could not be decoded as the matched DN: %s 106 */ 107 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_RESULT_DECODE_MATCHED_DN = 108 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_RESULT_DECODE_MATCHED_DN_63", 63); 109 110 /** 111 * Cannot decode the provided ASN.1 element as an LDAP result protocol op because the third element in the result sequence could not be decoded as the error message: %s 112 */ 113 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_RESULT_DECODE_ERROR_MESSAGE = 114 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_RESULT_DECODE_ERROR_MESSAGE_64", 64); 115 116 /** 117 * Cannot decode the provided ASN.1 element as an LDAP result protocol op because the fourth element in the result sequence could not be decoded as a set of referral URLs: %s 118 */ 119 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_RESULT_DECODE_REFERRALS = 120 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_RESULT_DECODE_REFERRALS_65", 65); 121 122 /** 123 * Cannot decode the provided ASN.1 element as an LDAP bind response protocol op because the final element in the result sequence could not be decoded as the server SASL credentials: %s 124 */ 125 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_RESULT_DECODE_SERVER_SASL_CREDENTIALS = 126 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_RESULT_DECODE_SERVER_SASL_CREDENTIALS_67", 67); 127 128 /** 129 * Cannot decode the provided ASN.1 element as an LDAP bind response protocol op because the response OID could not be decoded: %s 130 */ 131 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_EXTENDED_RESULT_DECODE_OID = 132 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_EXTENDED_RESULT_DECODE_OID_71", 71); 133 134 /** 135 * Cannot decode the provided ASN.1 element as an LDAP bind response protocol op because the response value could not be decoded: %s 136 */ 137 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_EXTENDED_RESULT_DECODE_VALUE = 138 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_EXTENDED_RESULT_DECODE_VALUE_72", 72); 139 140 /** 141 * Cannot decode the provided ASN.1 element as an LDAP unbind request protocol op: %s 142 */ 143 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_UNBIND_DECODE = 144 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_UNBIND_DECODE_74", 74); 145 146 /** 147 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the element could not be decoded as a sequence: %s 148 */ 149 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_SEQUENCE = 150 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_SEQUENCE_75", 75); 151 152 /** 153 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the protocol version could not be decoded as an integer: %s 154 */ 155 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_VERSION = 156 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_VERSION_77", 77); 157 158 /** 159 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the bind DN could not be properly decoded: %s 160 */ 161 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_DN = 162 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_DN_78", 78); 163 164 /** 165 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the password to use for simple authentication could not be decoded: %s 166 */ 167 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_PASSWORD = 168 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_PASSWORD_79", 79); 169 170 /** 171 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the SASL authentication information could not be decoded: %s 172 */ 173 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_SASL_INFO = 174 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_SASL_INFO_80", 80); 175 176 /** 177 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because the authentication info element had an invalid BER type (expected 80 or A3, got %x) 178 */ 179 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_BIND_REQUEST_DECODE_INVALID_CRED_TYPE = 180 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_INVALID_CRED_TYPE_81", 81); 181 182 /** 183 * Cannot decode the provided ASN.1 element as an LDAP bind request protocol op because an unexpected error occurred while trying to decode the authentication info element: %s 184 */ 185 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_BIND_REQUEST_DECODE_CREDENTIALS = 186 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_BIND_REQUEST_DECODE_CREDENTIALS_82", 82); 187 188 /** 189 * Cannot decode the provided ASN.1 element as an LDAP compare request protocol op because the element could not be decoded as a sequence: %s 190 */ 191 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_COMPARE_REQUEST_DECODE_SEQUENCE = 192 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_COMPARE_REQUEST_DECODE_SEQUENCE_83", 83); 193 194 /** 195 * Cannot decode the provided ASN.1 element as an LDAP compare request protocol op because the target DN could not be properly decoded: %s 196 */ 197 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_COMPARE_REQUEST_DECODE_DN = 198 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_COMPARE_REQUEST_DECODE_DN_85", 85); 199 200 /** 201 * Cannot decode the provided ASN.1 element as an LDAP compare request protocol op because the attribute value assertion could not be decoded as a sequence: %s 202 */ 203 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_COMPARE_REQUEST_DECODE_AVA = 204 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_COMPARE_REQUEST_DECODE_AVA_86", 86); 205 206 /** 207 * Cannot decode the provided ASN.1 element as an LDAP compare request protocol op because the attribute type could not be properly decoded: %s 208 */ 209 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_COMPARE_REQUEST_DECODE_TYPE = 210 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_COMPARE_REQUEST_DECODE_TYPE_88", 88); 211 212 /** 213 * Cannot decode the provided ASN.1 element as an LDAP compare request protocol op because the assertion value could not be properly decoded: %s 214 */ 215 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_COMPARE_REQUEST_DECODE_VALUE = 216 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_COMPARE_REQUEST_DECODE_VALUE_89", 89); 217 218 /** 219 * Cannot decode the provided ASN.1 element as an LDAP delete request protocol op because the target DN could not be properly decoded: %s 220 */ 221 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_DELETE_REQUEST_DECODE_DN = 222 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_DELETE_REQUEST_DECODE_DN_90", 90); 223 224 /** 225 * Cannot decode the provided ASN.1 element as an LDAP extended request protocol op because the element could not be decoded as a sequence: %s 226 */ 227 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_EXTENDED_REQUEST_DECODE_SEQUENCE = 228 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_EXTENDED_REQUEST_DECODE_SEQUENCE_91", 91); 229 230 /** 231 * Cannot decode the provided ASN.1 element as an LDAP extended request protocol op because the OID could not be properly decoded: %s 232 */ 233 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_EXTENDED_REQUEST_DECODE_OID = 234 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_EXTENDED_REQUEST_DECODE_OID_93", 93); 235 236 /** 237 * Cannot decode the provided ASN.1 element as an LDAP extended request protocol op because the value could not be properly decoded: %s 238 */ 239 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_EXTENDED_REQUEST_DECODE_VALUE = 240 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_EXTENDED_REQUEST_DECODE_VALUE_94", 94); 241 242 /** 243 * Cannot decode the provided ASN.1 element as an LDAP modify DN request protocol op because the element could not be decoded as a sequence: %s 244 */ 245 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_DN_REQUEST_DECODE_SEQUENCE = 246 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_DN_REQUEST_DECODE_SEQUENCE_95", 95); 247 248 /** 249 * Cannot decode the provided ASN.1 element as an LDAP modify DN request protocol op because the entry DN could not be properly decoded: %s 250 */ 251 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DN = 252 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DN_97", 97); 253 254 /** 255 * Cannot decode the provided ASN.1 element as an LDAP modify DN request protocol op because the new RDN could not be properly decoded: %s 256 */ 257 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_RDN = 258 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_RDN_98", 98); 259 260 /** 261 * Cannot decode the provided ASN.1 element as an LDAP modify DN request protocol op because the deleteOldRDN flag could not be properly decoded: %s 262 */ 263 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DELETE_OLD_RDN = 264 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DELETE_OLD_RDN_99", 99); 265 266 /** 267 * Cannot decode the provided ASN.1 element as an LDAP modify DN request protocol op because the new superior DN could not be properly decoded: %s 268 */ 269 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_SUPERIOR = 270 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_SUPERIOR_100", 100); 271 272 /** 273 * Cannot decode the provided ASN.1 element as an LDAP attribute because the element could not be decoded as a sequence: %s 274 */ 275 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ATTRIBUTE_DECODE_SEQUENCE = 276 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ATTRIBUTE_DECODE_SEQUENCE_101", 101); 277 278 /** 279 * Cannot decode the provided ASN.1 element as an LDAP attribute because the attribute type could not be decoded: %s 280 */ 281 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ATTRIBUTE_DECODE_TYPE = 282 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ATTRIBUTE_DECODE_TYPE_103", 103); 283 284 /** 285 * Cannot decode the provided ASN.1 element as an LDAP attribute because the set of values could not be decoded: %s 286 */ 287 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ATTRIBUTE_DECODE_VALUES = 288 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ATTRIBUTE_DECODE_VALUES_104", 104); 289 290 /** 291 * Cannot decode the provided ASN.1 element as an LDAP add request protocol op because the element could not be decoded as a sequence: %s 292 */ 293 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ADD_REQUEST_DECODE_SEQUENCE = 294 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ADD_REQUEST_DECODE_SEQUENCE_105", 105); 295 296 /** 297 * Cannot decode the provided ASN.1 element as an LDAP add request protocol op because the entry DN could not be decoded: %s 298 */ 299 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ADD_REQUEST_DECODE_DN = 300 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ADD_REQUEST_DECODE_DN_107", 107); 301 302 /** 303 * Cannot decode the provided ASN.1 element as an LDAP add request protocol op because the set of attributes could not be decoded: %s 304 */ 305 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ADD_REQUEST_DECODE_ATTRS = 306 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ADD_REQUEST_DECODE_ATTRS_108", 108); 307 308 /** 309 * Cannot decode the provided ASN.1 element as an LDAP modification because the element could not be decoded as a sequence: %s 310 */ 311 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFICATION_DECODE_SEQUENCE = 312 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFICATION_DECODE_SEQUENCE_109", 109); 313 314 /** 315 * Cannot decode the provided ASN.1 element as an LDAP modification because it contained an invalid modification type (%d) 316 */ 317 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_MODIFICATION_DECODE_INVALID_MOD_TYPE = 318 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFICATION_DECODE_INVALID_MOD_TYPE_111", 111); 319 320 /** 321 * Cannot decode the provided ASN.1 element as an LDAP modification because the modification type could not be decoded: %s 322 */ 323 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFICATION_DECODE_MOD_TYPE = 324 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFICATION_DECODE_MOD_TYPE_112", 112); 325 326 /** 327 * Cannot decode the provided ASN.1 element as an LDAP modification because the attribute could not be decoded: %s 328 */ 329 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFICATION_DECODE_ATTR = 330 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFICATION_DECODE_ATTR_113", 113); 331 332 /** 333 * Cannot decode the provided ASN.1 element as an LDAP modify request protocol op because the element could not be decoded as a sequence: %s 334 */ 335 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_REQUEST_DECODE_SEQUENCE = 336 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_REQUEST_DECODE_SEQUENCE_114", 114); 337 338 /** 339 * Cannot decode the provided ASN.1 element as an LDAP modify request protocol op because the entry DN could not be decoded: %s 340 */ 341 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_REQUEST_DECODE_DN = 342 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_REQUEST_DECODE_DN_116", 116); 343 344 /** 345 * Cannot decode the provided ASN.1 element as an LDAP modify request protocol op because the set of modifications could not be decoded: %s 346 */ 347 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_MODIFY_REQUEST_DECODE_MODS = 348 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_MODIFY_REQUEST_DECODE_MODS_117", 117); 349 350 /** 351 * Cannot decode the provided ASN.1 element as an LDAP search result entry protocol op because the element could not be decoded as a sequence: %s 352 */ 353 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_ENTRY_DECODE_SEQUENCE = 354 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_ENTRY_DECODE_SEQUENCE_118", 118); 355 356 /** 357 * Cannot decode the provided ASN.1 element as an LDAP search result entry protocol op because the entry DN could not be decoded: %s 358 */ 359 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_ENTRY_DECODE_DN = 360 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_ENTRY_DECODE_DN_120", 120); 361 362 /** 363 * Cannot decode the provided ASN.1 element as an LDAP search result entry protocol op because the set of attributes could not be decoded: %s 364 */ 365 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_ENTRY_DECODE_ATTRS = 366 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_ENTRY_DECODE_ATTRS_121", 121); 367 368 /** 369 * Cannot decode the provided ASN.1 element as an LDAP search result reference protocol op because the element could not be decoded as a sequence: %s 370 */ 371 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REFERENCE_DECODE_SEQUENCE = 372 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REFERENCE_DECODE_SEQUENCE_122", 122); 373 374 /** 375 * Cannot decode the provided ASN.1 element as an LDAP search result reference protocol op because a problem occurred while trying to decode the sequence elements as referral URLs: %s 376 */ 377 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REFERENCE_DECODE_URLS = 378 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REFERENCE_DECODE_URLS_123", 123); 379 380 /** 381 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the element could not be decoded as a sequence: %s 382 */ 383 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_SEQUENCE = 384 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_SEQUENCE_124", 124); 385 386 /** 387 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the base DN could not be decoded: %s 388 */ 389 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_BASE = 390 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_BASE_126", 126); 391 392 /** 393 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the provided scope value (%d) is invalid 394 */ 395 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_SCOPE = 396 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_SCOPE_127", 127); 397 398 /** 399 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the scope could not be decoded: %s 400 */ 401 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_SCOPE = 402 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_SCOPE_128", 128); 403 404 /** 405 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the provided alias dereferencing policy value (%d) is invalid 406 */ 407 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_DEREF = 408 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_DEREF_129", 129); 409 410 /** 411 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the alias dereferencing policy could not be decoded: %s 412 */ 413 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_DEREF = 414 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_DEREF_130", 130); 415 416 /** 417 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the size limit could not be decoded: %s 418 */ 419 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_SIZE_LIMIT = 420 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_SIZE_LIMIT_131", 131); 421 422 /** 423 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the time limit could not be decoded: %s 424 */ 425 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_TIME_LIMIT = 426 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_TIME_LIMIT_132", 132); 427 428 /** 429 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the typesOnly flag could not be decoded: %s 430 */ 431 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_TYPES_ONLY = 432 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_TYPES_ONLY_133", 133); 433 434 /** 435 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the filter could not be decoded: %s 436 */ 437 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_FILTER = 438 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_FILTER_134", 134); 439 440 /** 441 * Cannot decode the provided ASN.1 element as an LDAP search request protocol op because the requested attribute set could not be decoded: %s 442 */ 443 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_SEARCH_REQUEST_DECODE_ATTRIBUTES = 444 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_SEARCH_REQUEST_DECODE_ATTRIBUTES_135", 135); 445 446 /** 447 * Cannot decode the provided ASN.1 element as an LDAP protocol op because the element was null 448 */ 449 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_PROTOCOL_OP_DECODE_NULL = 450 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PROTOCOL_OP_DECODE_NULL_136", 136); 451 452 /** 453 * Cannot decode the provided ASN.1 element as an LDAP protocol op because the element had an invalid BER type (%x) for an LDAP protocol op 454 */ 455 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_PROTOCOL_OP_DECODE_INVALID_TYPE = 456 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PROTOCOL_OP_DECODE_INVALID_TYPE_137", 137); 457 458 /** 459 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element was null 460 */ 461 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_FILTER_DECODE_NULL = 462 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_NULL_138", 138); 463 464 /** 465 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element had an invalid BER type (%x) for a search filter 466 */ 467 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_FILTER_DECODE_INVALID_TYPE = 468 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_INVALID_TYPE_139", 139); 469 470 /** 471 * Cannot decode the provided ASN.1 element as an LDAP search filter because an unexpected error occurred while trying to decode one of the compound filter components: %s 472 */ 473 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_COMPOUND_COMPONENTS = 474 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_COMPOUND_COMPONENTS_141", 141); 475 476 /** 477 * Cannot decode the provided ASN.1 element as an LDAP search filter because the NOT component element could not be decoded as an LDAP filter: %s 478 */ 479 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_NOT_COMPONENT = 480 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_NOT_COMPONENT_143", 143); 481 482 /** 483 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element could not be decoded as a type-and-value sequence: %s 484 */ 485 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_TV_SEQUENCE = 486 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_TV_SEQUENCE_144", 144); 487 488 /** 489 * Cannot decode the provided ASN.1 element as an LDAP search filter because the attribute type could not be decoded from the type-and-value sequence: %s 490 */ 491 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_TV_TYPE = 492 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_TV_TYPE_146", 146); 493 494 /** 495 * Cannot decode the provided ASN.1 element as an LDAP search filter because the assertion value could not be decoded from the type-and-value sequence: %s 496 */ 497 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_TV_VALUE = 498 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_TV_VALUE_147", 147); 499 500 /** 501 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element could not be decoded as a substring sequence: %s 502 */ 503 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_SUBSTRING_SEQUENCE = 504 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_SUBSTRING_SEQUENCE_148", 148); 505 506 /** 507 * Cannot decode the provided ASN.1 element as an LDAP search filter because the attribute type could not be decoded from the substring sequence: %s 508 */ 509 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_SUBSTRING_TYPE = 510 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_SUBSTRING_TYPE_150", 150); 511 512 /** 513 * Cannot decode the provided ASN.1 element as an LDAP search filter because the substring value sequence could not be decoded: %s 514 */ 515 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_SUBSTRING_ELEMENTS = 516 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_SUBSTRING_ELEMENTS_151", 151); 517 518 /** 519 * Cannot decode the provided ASN.1 element as an LDAP search filter because the substring value sequence did not contain any elements 520 */ 521 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_FILTER_DECODE_SUBSTRING_NO_SUBELEMENTS = 522 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_SUBSTRING_NO_SUBELEMENTS_152", 152); 523 524 /** 525 * Cannot decode the provided ASN.1 element as an LDAP search filter because a problem occurred while trying to parse the substring value elements: %s 526 */ 527 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_SUBSTRING_VALUES = 528 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_SUBSTRING_VALUES_154", 154); 529 530 /** 531 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element could not be decoded as the presence attribute type: %s 532 */ 533 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_PRESENCE_TYPE = 534 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_PRESENCE_TYPE_155", 155); 535 536 /** 537 * Cannot decode the provided ASN.1 element as an LDAP search filter because the element could not be decoded as an extensible matching sequence: %s 538 */ 539 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_EXTENSIBLE_SEQUENCE = 540 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_EXTENSIBLE_SEQUENCE_156", 156); 541 542 /** 543 * Cannot decode the provided ASN.1 element as an LDAP search filter because a problem occurred while trying to parse the extensible match sequence elements: %s 544 */ 545 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_DECODE_EXTENSIBLE_ELEMENTS = 546 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_DECODE_EXTENSIBLE_ELEMENTS_158", 158); 547 548 /** 549 * The server attempted to send a response to the %s operation (conn=%d, op=%d), but the operation did not have a result code. This could indicate that the operation did not complete properly or that it is one that is not allowed to have a response. Using a generic 'Operations Error' response 550 */ 551 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_CLIENT_SEND_RESPONSE_NO_RESULT_CODE = 552 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CLIENT_SEND_RESPONSE_NO_RESULT_CODE_159", 159); 553 554 /** 555 * The server attempted to send a response to the %s operation (conn=%d, op=%d), but this type of operation is not allowed to have responses. Backtrace: %s 556 */ 557 public static final LocalizableMessageDescriptor.Arg4<Object, Number, Number, Object> ERR_LDAP_CLIENT_SEND_RESPONSE_INVALID_OP = 558 new LocalizableMessageDescriptor.Arg4<Object, Number, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CLIENT_SEND_RESPONSE_INVALID_OP_160", 160); 559 560 /** 561 * The Directory Server is closing the connection to this client 562 */ 563 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CLIENT_GENERIC_NOTICE_OF_DISCONNECTION = 564 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CLIENT_GENERIC_NOTICE_OF_DISCONNECTION_165", 165); 565 566 /** 567 * The Directory Server is currently in the process of closing this client connection 568 */ 569 public static final LocalizableMessageDescriptor.Arg0 WARN_CLIENT_DISCONNECT_IN_PROGRESS = 570 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "WARN_CLIENT_DISCONNECT_IN_PROGRESS_166", 166); 571 572 /** 573 * The LDAP connection handler defined in configuration entry %s was unable to open a selector to allow it to multiplex the associated accept sockets: %s. This connection handler will be disabled 574 */ 575 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_CONNHANDLER_OPEN_SELECTOR_FAILED = 576 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONNHANDLER_OPEN_SELECTOR_FAILED_177", 177); 577 578 /** 579 * The LDAP connection handler defined in configuration entry %s was unable to create a server socket channel to accept connections on %s:%d: %s. The Directory Server will not listen for new connections on that address 580 */ 581 public static final LocalizableMessageDescriptor.Arg4<Object, Object, Number, Object> ERR_LDAP_CONNHANDLER_CREATE_CHANNEL_FAILED = 582 new LocalizableMessageDescriptor.Arg4<Object, Object, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONNHANDLER_CREATE_CHANNEL_FAILED_178", 178); 583 584 /** 585 * The LDAP connection handler defined in configuration entry %s was unable to create any of the socket channels on any of the configured addresses. This connection handler will be disabled 586 */ 587 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CONNHANDLER_NO_ACCEPTORS = 588 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONNHANDLER_NO_ACCEPTORS_179", 179); 589 590 /** 591 * The connection attempt from client %s to %s has been rejected because the client was included in one of the denied address ranges 592 */ 593 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONNHANDLER_DENIED_CLIENT = 594 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_DENIED_CLIENT_180", 180); 595 596 /** 597 * The connection attempt from client %s to %s has been rejected because the client was not included in one of the allowed address ranges 598 */ 599 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CONNHANDLER_DISALLOWED_CLIENT = 600 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_DISALLOWED_CLIENT_181", 181); 601 602 /** 603 * An internal error prevented the Directory Server from properly registering the client connection from %s to %s with an appropriate request handler: %s 604 */ 605 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> INFO_CONNHANDLER_UNABLE_TO_REGISTER_CLIENT = 606 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ProtocolMessages.class, RESOURCE, "INFO_CONNHANDLER_UNABLE_TO_REGISTER_CLIENT_182", 182); 607 608 /** 609 * The %s defined in configuration entry %s was unable to accept a new client connection: %s 610 */ 611 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONNHANDLER_CANNOT_ACCEPT_CONNECTION = 612 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_CANNOT_ACCEPT_CONNECTION_183", 183); 613 614 /** 615 * The %s defined in configuration entry %s has experienced consecutive failures while trying to accept client connections: %s. This connection handler will be disabled 616 */ 617 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_CONNHANDLER_CONSECUTIVE_ACCEPT_FAILURES = 618 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_CONSECUTIVE_ACCEPT_FAILURES_184", 184); 619 620 /** 621 * The LDAP connection handler defined in configuration entry %s caught an unexpected error while trying to listen for new connections: %s. This connection handler will be disabled 622 */ 623 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_CONNHANDLER_UNCAUGHT_ERROR = 624 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CONNHANDLER_UNCAUGHT_ERROR_185", 185); 625 626 /** 627 * %s was unable to open a selector to multiplex reads from clients: %s. This request handler cannot continue processing 628 */ 629 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_REQHANDLER_OPEN_SELECTOR_FAILED = 630 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_OPEN_SELECTOR_FAILED_186", 186); 631 632 /** 633 * %s was unable to register this client connection with the selector: %s 634 */ 635 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_REQHANDLER_CANNOT_REGISTER = 636 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_CANNOT_REGISTER_187", 187); 637 638 /** 639 * This connection could not be registered with a request handler because the Directory Server is shutting down 640 */ 641 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_REQHANDLER_REJECT_DUE_TO_SHUTDOWN = 642 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_REJECT_DUE_TO_SHUTDOWN_188", 188); 643 644 /** 645 * This client connection is being deregistered from the associated request handler because the Directory Server is shutting down 646 */ 647 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_REQHANDLER_DEREGISTER_DUE_TO_SHUTDOWN = 648 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_DEREGISTER_DUE_TO_SHUTDOWN_190", 190); 649 650 /** 651 * Cannot decode the provided string as an LDAP search filter because the string was null 652 */ 653 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_FILTER_STRING_NULL = 654 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_STRING_NULL_192", 192); 655 656 /** 657 * Cannot decode the provided string %s as an LDAP search filter because an unexpected exception was thrown during processing: %s 658 */ 659 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_FILTER_UNCAUGHT_EXCEPTION = 660 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_UNCAUGHT_EXCEPTION_193", 193); 661 662 /** 663 * The provided search filter "%s" had mismatched parentheses around the portion between positions %d and %d 664 */ 665 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_FILTER_MISMATCHED_PARENTHESES = 666 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_MISMATCHED_PARENTHESES_194", 194); 667 668 /** 669 * The provided search filter "%s" was missing an equal sign in the suspected simple filter component between positions %d and %d 670 */ 671 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_FILTER_NO_EQUAL_SIGN = 672 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_NO_EQUAL_SIGN_195", 195); 673 674 /** 675 * The provided search filter "%s" had an invalid escaped byte value at position %d. A backslash in a value must be followed by two hexadecimal characters that define the byte that has been encoded 676 */ 677 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_FILTER_INVALID_ESCAPED_BYTE = 678 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_INVALID_ESCAPED_BYTE_196", 196); 679 680 /** 681 * The provided search filter "%s" could not be decoded because the compound filter between positions %d and %d did not start with an open parenthesis and end with a close parenthesis (they might be parentheses for different filter components) 682 */ 683 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_FILTER_COMPOUND_MISSING_PARENTHESES = 684 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_COMPOUND_MISSING_PARENTHESES_197", 197); 685 686 /** 687 * The provided search filter "%s" could not be decoded because the closing parenthesis at position %d did not have a corresponding open parenthesis 688 */ 689 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_FILTER_NO_CORRESPONDING_OPEN_PARENTHESIS = 690 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_NO_CORRESPONDING_OPEN_PARENTHESIS_198", 198); 691 692 /** 693 * The provided search filter "%s" could not be decoded because the opening parenthesis at position %d did not have a corresponding close parenthesis 694 */ 695 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_FILTER_NO_CORRESPONDING_CLOSE_PARENTHESIS = 696 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_NO_CORRESPONDING_CLOSE_PARENTHESIS_199", 199); 697 698 /** 699 * The provided search filter "%s" could not be decoded because the assumed substring filter value between positions %d and %d did not have any asterisk wildcard characters 700 */ 701 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_FILTER_SUBSTRING_NO_ASTERISKS = 702 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_SUBSTRING_NO_ASTERISKS_200", 200); 703 704 /** 705 * The provided search filter "%s" could not be decoded because the extensible match component starting at position %d did not have a colon to denote the end of the attribute type name 706 */ 707 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_COLON = 708 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_COLON_201", 201); 709 710 /** 711 * Terminating this connection because the client sent an invalid message of type %s (LDAP message ID %d) that is not allowed for request messages 712 */ 713 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_DISCONNECT_DUE_TO_INVALID_REQUEST_TYPE = 714 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_DISCONNECT_DUE_TO_INVALID_REQUEST_TYPE_202", 202); 715 716 /** 717 * An unexpected failure occurred while trying to process a request of type %s (LDAP message ID %d): %s. The client connection will be terminated 718 */ 719 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Object> ERR_LDAP_DISCONNECT_DUE_TO_PROCESSING_FAILURE = 720 new LocalizableMessageDescriptor.Arg3<Object, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_DISCONNECT_DUE_TO_PROCESSING_FAILURE_203", 203); 721 722 /** 723 * The bind request message (LDAP message ID %d) included an invalid authentication type of %s. This is a protocol error, and this connection will be terminated as per RFC 2251 section 4.2.3 724 */ 725 public static final LocalizableMessageDescriptor.Arg2<Number, Object> ERR_LDAP_INVALID_BIND_AUTH_TYPE = 726 new LocalizableMessageDescriptor.Arg2<Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_INVALID_BIND_AUTH_TYPE_204", 204); 727 728 /** 729 * This client connection is being terminated because a protocol error occurred while trying to process a bind request. The LDAP message ID was %d and the error message for the bind response was %s 730 */ 731 public static final LocalizableMessageDescriptor.Arg2<Number, Object> ERR_LDAP_DISCONNECT_DUE_TO_BIND_PROTOCOL_ERROR = 732 new LocalizableMessageDescriptor.Arg2<Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_DISCONNECT_DUE_TO_BIND_PROTOCOL_ERROR_205", 205); 733 734 /** 735 * An extended response message would have been sent to an LDAPv2 client (connection ID=%d, operation ID=%d): %s. LDAPv2 does not allow extended operations, so this response will not be sent 736 */ 737 public static final LocalizableMessageDescriptor.Arg3<Number, Number, Object> ERR_LDAPV2_SKIPPING_EXTENDED_RESPONSE = 738 new LocalizableMessageDescriptor.Arg3<Number, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_SKIPPING_EXTENDED_RESPONSE_206", 206); 739 740 /** 741 * A search performed by an LDAPv2 client (connection ID=%d, operation ID=%d) would have included a search result reference %s. Referrals are not allowed for LDAPv2 clients, so this search reference will not be sent 742 */ 743 public static final LocalizableMessageDescriptor.Arg3<Number, Number, Object> ERR_LDAPV2_SKIPPING_SEARCH_REFERENCE = 744 new LocalizableMessageDescriptor.Arg3<Number, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_SKIPPING_SEARCH_REFERENCE_207", 207); 745 746 /** 747 * The original result code for this message was 10 but this result is not allowed for LDAPv2 clients 748 */ 749 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAPV2_REFERRAL_RESULT_CHANGED = 750 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_REFERRAL_RESULT_CHANGED_208", 208); 751 752 /** 753 * The response included one or more referrals, which are not allowed for LDAPv2 clients. The referrals included were: %s 754 */ 755 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAPV2_REFERRALS_OMITTED = 756 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_REFERRALS_OMITTED_209", 209); 757 758 /** 759 * The Directory Server has been configured to deny access to LDAPv2 clients. This connection will be closed 760 */ 761 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAPV2_CLIENTS_NOT_ALLOWED = 762 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_CLIENTS_NOT_ALLOWED_210", 210); 763 764 /** 765 * The client with connection ID %d authenticated to the Directory Server using LDAPv2, but attempted to send an extended operation request (LDAP message ID %d), which is not allowed for LDAPv2 clients. The connection will be terminated 766 */ 767 public static final LocalizableMessageDescriptor.Arg2<Number, Number> ERR_LDAPV2_EXTENDED_REQUEST_NOT_ALLOWED = 768 new LocalizableMessageDescriptor.Arg2<Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_EXTENDED_REQUEST_NOT_ALLOWED_211", 211); 769 770 /** 771 * An attempt was made to initialize the LDAP statistics monitor provider as defined in configuration entry %s. This monitor provider should only be dynamically created within the Directory Server itself and not from within the configuration 772 */ 773 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION = 774 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION_212", 212); 775 776 /** 777 * The LDAP request handler thread "%s" encountered an unexpected error that would have caused the thread to die: %s. The error has been caught and the request handler should continue operating as normal 778 */ 779 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDAP_REQHANDLER_UNEXPECTED_SELECT_EXCEPTION = 780 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_UNEXPECTED_SELECT_EXCEPTION_213", 213); 781 782 /** 783 * The attempt to register this connection with the Directory Server was rejected. This might indicate that the server already has the maximum allowed number of concurrent connections established, or that it is in a restricted access mode 784 */ 785 public static final LocalizableMessageDescriptor.Arg0 ERR_CONNHANDLER_REJECTED_BY_SERVER = 786 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_REJECTED_BY_SERVER_214", 214); 787 788 /** 789 * TCP port on which this connection handler can accept client connections. Changes to this configuration attribute will not take effect until the connection handler is disabled and re-enabled, or until the Directory Server is restarted 790 */ 791 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONNHANDLER_DESCRIPTION_LISTEN_PORT = 792 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CONNHANDLER_DESCRIPTION_LISTEN_PORT_216", 216); 793 794 /** 795 * Indicates whether this connection handler should allow clients to use the StartTLS extended operation to initiate secure communication over a non-SSL LDAP connection. This can not be used if SSL is enabled for the connection handler. Changes to this configuration attribute will take effect immediately for LDAP clients 796 */ 797 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_STARTTLS = 798 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_STARTTLS_227", 227); 799 800 /** 801 * Nickname of the certificate that the connection handler should use when accepting SSL-based connections or performing StartTLS negotiation. Changes to this configuration attribute will not take effect until the connection handler is disabled and re-enabled, or until the Directory Server is restarted 802 */ 803 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME = 804 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME_229", 229); 805 806 /** 807 * An unexpected error occurred while trying to decode the DN %s used for internal operations as a root user: %s 808 */ 809 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_INTERNAL_CANNOT_DECODE_DN = 810 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_INTERNAL_CANNOT_DECODE_DN_264", 264); 811 812 /** 813 * The TLS connection security provider cannot be enabled on this client connection because it is already using the %s provider. StartTLS can only be used on clear-text connections 814 */ 815 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_TLS_EXISTING_SECURITY_PROVIDER = 816 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_TLS_EXISTING_SECURITY_PROVIDER_271", 271); 817 818 /** 819 * StartTLS cannot be enabled on this LDAP client connection because the corresponding LDAP connection handler is configured to reject StartTLS requests. The use of StartTLS can be enabled using the ds-cfg-allow-start-tls configuration attribute 820 */ 821 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_TLS_STARTTLS_NOT_ALLOWED = 822 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_TLS_STARTTLS_NOT_ALLOWED_272", 272); 823 824 /** 825 * An error occurred while attempting to create a TLS connection security provider for this client connection for use with StartTLS: %s 826 */ 827 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_TLS_CANNOT_CREATE_TLS_PROVIDER = 828 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_TLS_CANNOT_CREATE_TLS_PROVIDER_273", 273); 829 830 /** 831 * Started listening for new connections on %s 832 */ 833 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_CONNHANDLER_STARTED_LISTENING = 834 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "NOTE_CONNHANDLER_STARTED_LISTENING_276", 276); 835 836 /** 837 * Stopped listening for new connections on %s 838 */ 839 public static final LocalizableMessageDescriptor.Arg1<Object> NOTE_CONNHANDLER_STOPPED_LISTENING = 840 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "NOTE_CONNHANDLER_STOPPED_LISTENING_277", 277); 841 842 /** 843 * Cannot decode the provided ASN.1 element as an LDAP paged results control value because the element is null 844 */ 845 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_PAGED_RESULTS_DECODE_NULL = 846 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PAGED_RESULTS_DECODE_NULL_278", 278); 847 848 /** 849 * Cannot decode the provided ASN.1 element as an LDAP paged results control value because the element could not be decoded as a sequence: %s 850 */ 851 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_PAGED_RESULTS_DECODE_SEQUENCE = 852 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PAGED_RESULTS_DECODE_SEQUENCE_279", 279); 853 854 /** 855 * Cannot decode the provided ASN.1 element as an LDAP paged results control value because the size element could not be properly decoded: %s 856 */ 857 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_PAGED_RESULTS_DECODE_SIZE = 858 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PAGED_RESULTS_DECODE_SIZE_281", 281); 859 860 /** 861 * Cannot decode the provided ASN.1 element as an LDAP paged results control value because the cookie could not be properly decoded: %s 862 */ 863 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_PAGED_RESULTS_DECODE_COOKIE = 864 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_PAGED_RESULTS_DECODE_COOKIE_282", 282); 865 866 /** 867 * Cannot decode the provided LDAP assertion control because the control does not have a value 868 */ 869 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAPASSERT_NO_CONTROL_VALUE = 870 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAPASSERT_NO_CONTROL_VALUE_283", 283); 871 872 /** 873 * Cannot decode the provided LDAP pre-read request control because the control does not have a value 874 */ 875 public static final LocalizableMessageDescriptor.Arg0 ERR_PREREADREQ_NO_CONTROL_VALUE = 876 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PREREADREQ_NO_CONTROL_VALUE_285", 285); 877 878 /** 879 * Cannot decode the provided LDAP pre-read request control because an error occurred while trying to decode the control value: %s 880 */ 881 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PREREADREQ_CANNOT_DECODE_VALUE = 882 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PREREADREQ_CANNOT_DECODE_VALUE_286", 286); 883 884 /** 885 * Cannot decode the provided LDAP post-read request control because the control does not have a value 886 */ 887 public static final LocalizableMessageDescriptor.Arg0 ERR_POSTREADREQ_NO_CONTROL_VALUE = 888 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_POSTREADREQ_NO_CONTROL_VALUE_287", 287); 889 890 /** 891 * Cannot decode the provided LDAP post-read request control because an error occurred while trying to decode the control value: %s 892 */ 893 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_POSTREADREQ_CANNOT_DECODE_VALUE = 894 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_POSTREADREQ_CANNOT_DECODE_VALUE_288", 288); 895 896 /** 897 * Cannot decode the provided LDAP pre-read response control because the control does not have a value 898 */ 899 public static final LocalizableMessageDescriptor.Arg0 ERR_PREREADRESP_NO_CONTROL_VALUE = 900 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PREREADRESP_NO_CONTROL_VALUE_289", 289); 901 902 /** 903 * Cannot decode the provided LDAP pre-read response control because an error occurred while trying to decode the control value: %s 904 */ 905 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PREREADRESP_CANNOT_DECODE_VALUE = 906 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PREREADRESP_CANNOT_DECODE_VALUE_290", 290); 907 908 /** 909 * Cannot decode the provided LDAP post-read response control because the control does not have a value 910 */ 911 public static final LocalizableMessageDescriptor.Arg0 ERR_POSTREADRESP_NO_CONTROL_VALUE = 912 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_POSTREADRESP_NO_CONTROL_VALUE_291", 291); 913 914 /** 915 * Cannot decode the provided LDAP post-read response control because an error occurred while trying to decode the control value: %s 916 */ 917 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_POSTREADRESP_CANNOT_DECODE_VALUE = 918 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_POSTREADRESP_CANNOT_DECODE_VALUE_292", 292); 919 920 /** 921 * Cannot decode the provided proxied authorization V1 control because it does not have a value 922 */ 923 public static final LocalizableMessageDescriptor.Arg0 ERR_PROXYAUTH1_NO_CONTROL_VALUE = 924 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH1_NO_CONTROL_VALUE_293", 293); 925 926 /** 927 * Cannot decode the provided proxied authorization V1 control because an error occurred while attempting to decode the control value: %s 928 */ 929 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH1_CANNOT_DECODE_VALUE = 930 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH1_CANNOT_DECODE_VALUE_295", 295); 931 932 /** 933 * User %s specified in the proxied authorization V1 control does not exist in the Directory Server 934 */ 935 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH1_NO_SUCH_USER = 936 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH1_NO_SUCH_USER_296", 296); 937 938 /** 939 * Cannot decode the provided proxied authorization V2 control because it does not have a value 940 */ 941 public static final LocalizableMessageDescriptor.Arg0 ERR_PROXYAUTH2_NO_CONTROL_VALUE = 942 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_NO_CONTROL_VALUE_297", 297); 943 944 /** 945 * Unable to process proxied authorization V2 control because it contains an authorization ID based on a username and no proxied authorization identity mapper is configured in the Directory Server 946 */ 947 public static final LocalizableMessageDescriptor.Arg0 ERR_PROXYAUTH2_NO_IDENTITY_MAPPER = 948 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_NO_IDENTITY_MAPPER_299", 299); 949 950 /** 951 * The authorization ID "%s" contained in the proxied authorization V2 control is invalid because it does not start with "dn:" to indicate a user DN or "u:" to indicate a username 952 */ 953 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_INVALID_AUTHZID = 954 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_INVALID_AUTHZID_300", 300); 955 956 /** 957 * User %s specified in the proxied authorization V2 control does not exist in the Directory Server 958 */ 959 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_NO_SUCH_USER = 960 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_NO_SUCH_USER_301", 301); 961 962 /** 963 * The provided integer value %d does not correspond to any persistent search change type 964 */ 965 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_PSEARCH_CHANGETYPES_INVALID_TYPE = 966 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_PSEARCH_CHANGETYPES_INVALID_TYPE_302", 302); 967 968 /** 969 * The provided integer value indicated that there were no persistent search change types, which is not allowed 970 */ 971 public static final LocalizableMessageDescriptor.Arg0 ERR_PSEARCH_CHANGETYPES_NO_TYPES = 972 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PSEARCH_CHANGETYPES_NO_TYPES_303", 303); 973 974 /** 975 * The provided integer value %d was outside the range of acceptable values for an encoded change type set 976 */ 977 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_PSEARCH_CHANGETYPES_INVALID_TYPES = 978 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_PSEARCH_CHANGETYPES_INVALID_TYPES_304", 304); 979 980 /** 981 * Cannot decode the provided persistent search control because it does not have a value 982 */ 983 public static final LocalizableMessageDescriptor.Arg0 ERR_PSEARCH_NO_CONTROL_VALUE = 984 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PSEARCH_NO_CONTROL_VALUE_305", 305); 985 986 /** 987 * Cannot decode the provided persistent search control because an error occurred while attempting to decode the control value: %s 988 */ 989 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PSEARCH_CANNOT_DECODE_VALUE = 990 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PSEARCH_CANNOT_DECODE_VALUE_307", 307); 991 992 /** 993 * Cannot decode the provided entry change notification control because it does not have a value 994 */ 995 public static final LocalizableMessageDescriptor.Arg0 ERR_ECN_NO_CONTROL_VALUE = 996 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_ECN_NO_CONTROL_VALUE_308", 308); 997 998 /** 999 * Cannot decode the provided entry change notification control because it contains a previous DN element but had a change type of %s. The previous DN element can only be provided with the modify DN change type 1000 */ 1001 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ECN_ILLEGAL_PREVIOUS_DN = 1002 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_ECN_ILLEGAL_PREVIOUS_DN_310", 310); 1003 1004 /** 1005 * Cannot decode the provided entry change notification control because an error occurred while attempting to decode the control value: %s 1006 */ 1007 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ECN_CANNOT_DECODE_VALUE = 1008 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_ECN_CANNOT_DECODE_VALUE_312", 312); 1009 1010 /** 1011 * Cannot decode the provided authorization identity response control because it does not have a value 1012 */ 1013 public static final LocalizableMessageDescriptor.Arg0 ERR_AUTHZIDRESP_NO_CONTROL_VALUE = 1014 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_AUTHZIDRESP_NO_CONTROL_VALUE_313", 313); 1015 1016 /** 1017 * Cannot decode the provided ASN.1 element as an LDAP intermediate response protocol op because the element could not be decoded as a sequence: %s 1018 */ 1019 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_INTERMEDIATE_RESPONSE_DECODE_SEQUENCE = 1020 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_INTERMEDIATE_RESPONSE_DECODE_SEQUENCE_314", 314); 1021 1022 /** 1023 * An error occurred while attempting to decode the intermediate response OID: %s 1024 */ 1025 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_OID = 1026 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_OID_316", 316); 1027 1028 /** 1029 * An error occurred while attempting to decode the intermediate response value: %s 1030 */ 1031 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_VALUE = 1032 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_VALUE_317", 317); 1033 1034 /** 1035 * The provided LDAP filter "%s" cannot be used as a matched values filter because filters of type %s are not allowed for use in matched values filters 1036 */ 1037 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_MVFILTER_INVALID_LDAP_FILTER_TYPE = 1038 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_INVALID_LDAP_FILTER_TYPE_321", 321); 1039 1040 /** 1041 * The provided LDAP filter "%s" cannot be used as a matched values filter because it is an extensible match filter that contains the dnAttributes flag, which is not allowed for matched values filters 1042 */ 1043 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_INVALID_DN_ATTRIBUTES_FLAG = 1044 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_INVALID_DN_ATTRIBUTES_FLAG_322", 322); 1045 1046 /** 1047 * An error occurred while attempting to decode the attribute value assertion in the provided matched values filter: %s 1048 */ 1049 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_CANNOT_DECODE_AVA = 1050 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_CANNOT_DECODE_AVA_324", 324); 1051 1052 /** 1053 * The provided matched values filter could not be decoded because there were no subInitial, subAny, or subFinal components in the substring filter 1054 */ 1055 public static final LocalizableMessageDescriptor.Arg0 ERR_MVFILTER_NO_SUBSTRING_ELEMENTS = 1056 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_NO_SUBSTRING_ELEMENTS_326", 326); 1057 1058 /** 1059 * The provided matched values filter could not be decoded because an error occurred while decoding the substring filter component: %s 1060 */ 1061 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_CANNOT_DECODE_SUBSTRINGS = 1062 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_CANNOT_DECODE_SUBSTRINGS_330", 330); 1063 1064 /** 1065 * The provided matched values filter could not be decoded because an error occurred while decoding the presence filter component: %s 1066 */ 1067 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_CANNOT_DECODE_PRESENT_TYPE = 1068 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_CANNOT_DECODE_PRESENT_TYPE_331", 331); 1069 1070 /** 1071 * The provided matched values filter could not be decoded because an error occurred while decoding the extensible match filter component: %s 1072 */ 1073 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_CANNOT_DECODE_EXTENSIBLE_MATCH = 1074 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_CANNOT_DECODE_EXTENSIBLE_MATCH_337", 337); 1075 1076 /** 1077 * The provided matched values filter could not be decoded because it had an invalid BER type of %s 1078 */ 1079 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MVFILTER_INVALID_ELEMENT_TYPE = 1080 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MVFILTER_INVALID_ELEMENT_TYPE_338", 338); 1081 1082 /** 1083 * Cannot decode the provided matched values control because it does not have a value 1084 */ 1085 public static final LocalizableMessageDescriptor.Arg0 ERR_MATCHEDVALUES_NO_CONTROL_VALUE = 1086 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_MATCHEDVALUES_NO_CONTROL_VALUE_339", 339); 1087 1088 /** 1089 * Cannot decode the provided matched values control because an error occurred while attempting to decode the value as an ASN.1 sequence: %s 1090 */ 1091 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_MATCHEDVALUES_CANNOT_DECODE_VALUE_AS_SEQUENCE = 1092 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_MATCHEDVALUES_CANNOT_DECODE_VALUE_AS_SEQUENCE_340", 340); 1093 1094 /** 1095 * Cannot decode the provided matched values control because the control value does not specify any filters for use in matching attribute values 1096 */ 1097 public static final LocalizableMessageDescriptor.Arg0 ERR_MATCHEDVALUES_NO_FILTERS = 1098 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_MATCHEDVALUES_NO_FILTERS_341", 341); 1099 1100 /** 1101 * Cannot decode the provided control as a password expired control because the provided control had a value that could not be parsed as an integer 1102 */ 1103 public static final LocalizableMessageDescriptor.Arg0 ERR_PWEXPIRED_CONTROL_INVALID_VALUE = 1104 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PWEXPIRED_CONTROL_INVALID_VALUE_342", 342); 1105 1106 /** 1107 * Cannot decode the provided password expiring control because it does not have a value 1108 */ 1109 public static final LocalizableMessageDescriptor.Arg0 ERR_PWEXPIRING_NO_CONTROL_VALUE = 1110 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PWEXPIRING_NO_CONTROL_VALUE_343", 343); 1111 1112 /** 1113 * Cannot decode the provided control as a password expiring control because an error occurred while attempting to decode the number of seconds until expiration: %s 1114 */ 1115 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PWEXPIRING_CANNOT_DECODE_SECONDS_UNTIL_EXPIRATION = 1116 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PWEXPIRING_CANNOT_DECODE_SECONDS_UNTIL_EXPIRATION_344", 344); 1117 1118 /** 1119 * The Directory Server is already processing another request on the same client connection with the same message ID of %d 1120 */ 1121 public static final LocalizableMessageDescriptor.Arg1<Number> WARN_LDAP_CLIENT_DUPLICATE_MESSAGE_ID = 1122 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "WARN_LDAP_CLIENT_DUPLICATE_MESSAGE_ID_345", 345); 1123 1124 /** 1125 * The Directory Server encountered an unexpected error while attempting to add the client request to the work queue: %s 1126 */ 1127 public static final LocalizableMessageDescriptor.Arg1<Object> WARN_LDAP_CLIENT_CANNOT_ENQUEUE = 1128 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "WARN_LDAP_CLIENT_CANNOT_ENQUEUE_346", 346); 1129 1130 /** 1131 * TCP port on which this connection handler may accept administrative connections. Changes to this configuration attribute will not take effect until the connection handler is disabled and re-enabled, or until the Directory Server is restarted 1132 */ 1133 public static final LocalizableMessageDescriptor.Arg0 INFO_JMX_CONNHANDLER_DESCRIPTION_LISTEN_PORT = 1134 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_JMX_CONNHANDLER_DESCRIPTION_LISTEN_PORT_347", 347); 1135 1136 /** 1137 * Nickname of the certificate that the connection handler should use when accepting SSL-based connections or performing StartTLS negotiation. Changes to this configuration attribute will not take effect until the connection handler is disabled and re-enabled, or until the Directory Server is restarted 1138 */ 1139 public static final LocalizableMessageDescriptor.Arg0 INFO_JMX_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME = 1140 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_JMX_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME_352", 352); 1141 1142 /** 1143 * Cannot decode the provided control as a password policy request control because the provided control had a value but the password policy request control should not have a value 1144 */ 1145 public static final LocalizableMessageDescriptor.Arg0 ERR_PWPOLICYREQ_CONTROL_HAS_VALUE = 1146 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PWPOLICYREQ_CONTROL_HAS_VALUE_354", 354); 1147 1148 /** 1149 * Cannot decode the provided password policy response control because it does not have a value 1150 */ 1151 public static final LocalizableMessageDescriptor.Arg0 ERR_PWPOLICYRES_NO_CONTROL_VALUE = 1152 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PWPOLICYRES_NO_CONTROL_VALUE_355", 355); 1153 1154 /** 1155 * Cannot decode the provided password policy response control because the warning element has an invalid type of %s 1156 */ 1157 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PWPOLICYRES_INVALID_WARNING_TYPE = 1158 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PWPOLICYRES_INVALID_WARNING_TYPE_356", 356); 1159 1160 /** 1161 * Cannot decode the provided password policy response control because the error element has an invalid type of %d 1162 */ 1163 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_PWPOLICYRES_INVALID_ERROR_TYPE = 1164 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_PWPOLICYRES_INVALID_ERROR_TYPE_357", 357); 1165 1166 /** 1167 * Cannot decode the provided password policy response control: %s 1168 */ 1169 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PWPOLICYRES_DECODE_ERROR = 1170 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PWPOLICYRES_DECODE_ERROR_359", 359); 1171 1172 /** 1173 * passwordExpired 1174 */ 1175 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_EXPIRED = 1176 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_EXPIRED_360", 360); 1177 1178 /** 1179 * accountLocked 1180 */ 1181 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_ACCOUNT_LOCKED = 1182 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_ACCOUNT_LOCKED_361", 361); 1183 1184 /** 1185 * changeAfterReset 1186 */ 1187 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_CHANGE_AFTER_RESET = 1188 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_CHANGE_AFTER_RESET_362", 362); 1189 1190 /** 1191 * passwordModNotAllowed 1192 */ 1193 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_MOD_NOT_ALLOWED = 1194 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_MOD_NOT_ALLOWED_363", 363); 1195 1196 /** 1197 * mustSupplyOldPassword 1198 */ 1199 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_MUST_SUPPLY_OLD_PASSWORD = 1200 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_MUST_SUPPLY_OLD_PASSWORD_364", 364); 1201 1202 /** 1203 * insufficientPasswordQuality 1204 */ 1205 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_INSUFFICIENT_PASSWORD_QUALITY = 1206 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_INSUFFICIENT_PASSWORD_QUALITY_365", 365); 1207 1208 /** 1209 * passwordTooShort 1210 */ 1211 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_SHORT = 1212 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_SHORT_366", 366); 1213 1214 /** 1215 * passwordTooYoung 1216 */ 1217 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_YOUNG = 1218 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_YOUNG_367", 367); 1219 1220 /** 1221 * passwordInHistory 1222 */ 1223 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_IN_HISTORY = 1224 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPERRTYPE_DESCRIPTION_PASSWORD_IN_HISTORY_368", 368); 1225 1226 /** 1227 * timeBeforeExpiration 1228 */ 1229 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPWARNTYPE_DESCRIPTION_TIME_BEFORE_EXPIRATION = 1230 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPWARNTYPE_DESCRIPTION_TIME_BEFORE_EXPIRATION_369", 369); 1231 1232 /** 1233 * graceAuthNsRemaining 1234 */ 1235 public static final LocalizableMessageDescriptor.Arg0 INFO_PWPWARNTYPE_DESCRIPTION_GRACE_LOGINS_REMAINING = 1236 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_PWPWARNTYPE_DESCRIPTION_GRACE_LOGINS_REMAINING_370", 370); 1237 1238 /** 1239 * Use of the proxied authorization V1 control for user %s is not allowed by the password policy configuration 1240 */ 1241 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH1_UNUSABLE_ACCOUNT = 1242 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH1_UNUSABLE_ACCOUNT_372", 372); 1243 1244 /** 1245 * Cannot decode the provided control as an account availability request control because the provided control had a value but the account availability request control should not have a value 1246 */ 1247 public static final LocalizableMessageDescriptor.Arg0 ERR_ACCTUSABLEREQ_CONTROL_HAS_VALUE = 1248 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_ACCTUSABLEREQ_CONTROL_HAS_VALUE_375", 375); 1249 1250 /** 1251 * Cannot decode the provided account availability response control because it does not have a value 1252 */ 1253 public static final LocalizableMessageDescriptor.Arg0 ERR_ACCTUSABLERES_NO_CONTROL_VALUE = 1254 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_ACCTUSABLERES_NO_CONTROL_VALUE_376", 376); 1255 1256 /** 1257 * The account availability response control had an unknown ACCOUNT_USABLE_RESPONSE element type of %s 1258 */ 1259 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ACCTUSABLERES_UNKNOWN_VALUE_ELEMENT_TYPE = 1260 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_ACCTUSABLERES_UNKNOWN_VALUE_ELEMENT_TYPE_378", 378); 1261 1262 /** 1263 * Cannot decode the provided account availability response control: %s 1264 */ 1265 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ACCTUSABLERES_DECODE_ERROR = 1266 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_ACCTUSABLERES_DECODE_ERROR_379", 379); 1267 1268 /** 1269 * The provided LDAP attribute %s contains duplicate values 1270 */ 1271 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_ATTRIBUTE_DUPLICATE_VALUES = 1272 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_ATTRIBUTE_DUPLICATE_VALUES_384", 384); 1273 1274 /** 1275 * The provided LDAP search filter references unknown matching rule %s 1276 */ 1277 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_UNKNOWN_MATCHING_RULE = 1278 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_UNKNOWN_MATCHING_RULE_385", 385); 1279 1280 /** 1281 * The provided LDAP search filter has an assertion value but does not include either an attribute type or a matching rule ID 1282 */ 1283 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_FILTER_VALUE_WITH_NO_ATTR_OR_MR = 1284 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_VALUE_WITH_NO_ATTR_OR_MR_386", 386); 1285 1286 /** 1287 * Unable to call select() in the LDAP connection handler: %s. It appears that your JVM may be susceptible to the issue described at http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6322825, and it is unable to handle LDAP requests in its current configuration. Please upgrade to a newer JVM that does not exhibit this behavior (Java 5.0 Update 8 or higher) or set the number of available file descriptors to a value greater than or equal to 8193 (e.g., by issuing the command 'ulimit -n 8193') before starting the Directory Server 1288 */ 1289 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_REQHANDLER_DETECTED_JVM_ISSUE_CR6322825 = 1290 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_REQHANDLER_DETECTED_JVM_ISSUE_CR6322825_387", 387); 1291 1292 /** 1293 * Unwilling to process the request because it contains a proxied authorization V1 control which is not marked critical. The proxied authorization control must always have a criticality of "true" 1294 */ 1295 public static final LocalizableMessageDescriptor.Arg0 ERR_PROXYAUTH1_CONTROL_NOT_CRITICAL = 1296 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH1_CONTROL_NOT_CRITICAL_388", 388); 1297 1298 /** 1299 * Unwilling to process the request because it contains a proxied authorization V2 control which is not marked critical. The proxied authorization control must always have a criticality of "true" 1300 */ 1301 public static final LocalizableMessageDescriptor.Arg0 ERR_PROXYAUTH2_CONTROL_NOT_CRITICAL = 1302 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_CONTROL_NOT_CRITICAL_389", 389); 1303 1304 /** 1305 * DN of the configuration entry for the key manager provider that should be used with this LDAP connection handler. Changes to this attribute will take effect immediately, but only for subsequent attempts to access the key manager provider for associated client connections 1306 */ 1307 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONNHANDLER_DESCRIPTION_KEYMANAGER_DN = 1308 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CONNHANDLER_DESCRIPTION_KEYMANAGER_DN_390", 390); 1309 1310 /** 1311 * DN of the configuration entry for the trust manager provider that should be used with this LDAP connection handler. Changes to this attribute will take effect immediately, but only for subsequent attempts to access the trust manager provider for associated client connections 1312 */ 1313 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAP_CONNHANDLER_DESCRIPTION_TRUSTMANAGER_DN = 1314 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAP_CONNHANDLER_DESCRIPTION_TRUSTMANAGER_DN_393", 393); 1315 1316 /** 1317 * Specifies whether to enable the LDAPS connection handler 1318 */ 1319 public static final LocalizableMessageDescriptor.Arg0 INFO_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE = 1320 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE_404", 404); 1321 1322 /** 1323 * The provided search filter "%s" could not be decoded because the NOT filter between positions %d and %d did not contain exactly one filter component 1324 */ 1325 public static final LocalizableMessageDescriptor.Arg3<Object, Number, Number> ERR_LDAP_FILTER_NOT_EXACTLY_ONE = 1326 new LocalizableMessageDescriptor.Arg3<Object, Number, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_NOT_EXACTLY_ONE_405", 405); 1327 1328 /** 1329 * Unable to decode the provided control as a server-side sort request control because it does not include a control value 1330 */ 1331 public static final LocalizableMessageDescriptor.Arg0 INFO_SORTREQ_CONTROL_NO_VALUE = 1332 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_NO_VALUE_406", 406); 1333 1334 /** 1335 * Unable to process the provided server-side sort request control because it references undefined ordering matching rule %s 1336 */ 1337 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTREQ_CONTROL_UNDEFINED_ORDERING_RULE = 1338 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_UNDEFINED_ORDERING_RULE_408", 408); 1339 1340 /** 1341 * Unable to process the provided server-side sort request control because an error occurred while attempting to decode the control value: %s 1342 */ 1343 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTREQ_CONTROL_CANNOT_DECODE_VALUE = 1344 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_CANNOT_DECODE_VALUE_410", 410); 1345 1346 /** 1347 * Unable to decode the provided control as a server-side sort response control because it does not include a control value 1348 */ 1349 public static final LocalizableMessageDescriptor.Arg0 INFO_SORTRES_CONTROL_NO_VALUE = 1350 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_SORTRES_CONTROL_NO_VALUE_411", 411); 1351 1352 /** 1353 * Unable to process the provided server-side sort response control because an error occurred while attempting to decode the control value: %s 1354 */ 1355 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTRES_CONTROL_CANNOT_DECODE_VALUE = 1356 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTRES_CONTROL_CANNOT_DECODE_VALUE_412", 412); 1357 1358 /** 1359 * Unable to process the provided server-side sort request control because the sort order string "%s" included a sort key with no attribute name 1360 */ 1361 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTREQ_CONTROL_NO_ATTR_NAME = 1362 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_NO_ATTR_NAME_413", 413); 1363 1364 /** 1365 * Unable to process the provided server-side sort request control because the sort order string "%s" included a sort key with a colon but no matching rule name 1366 */ 1367 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTREQ_CONTROL_NO_MATCHING_RULE = 1368 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_NO_MATCHING_RULE_414", 414); 1369 1370 /** 1371 * Unable to process the provided server-side sort request control because it did not contain any sort keys 1372 */ 1373 public static final LocalizableMessageDescriptor.Arg0 INFO_SORTREQ_CONTROL_NO_SORT_KEYS = 1374 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_NO_SORT_KEYS_415", 415); 1375 1376 /** 1377 * Unable to process the provided server-side sort request control because it included attribute %s which does not have a default ordering matching rule and no ordering rule was specified in the sort key 1378 */ 1379 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_SORTREQ_CONTROL_NO_ORDERING_RULE_FOR_ATTR = 1380 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_SORTREQ_CONTROL_NO_ORDERING_RULE_FOR_ATTR_416", 416); 1381 1382 /** 1383 * Unable to decode the provided control as a VLV request control because it does not include a control value 1384 */ 1385 public static final LocalizableMessageDescriptor.Arg0 INFO_VLVREQ_CONTROL_NO_VALUE = 1386 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_VLVREQ_CONTROL_NO_VALUE_417", 417); 1387 1388 /** 1389 * Unable to decode the provided control as a VLV request control because the target element type %s is invalid 1390 */ 1391 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_VLVREQ_CONTROL_INVALID_TARGET_TYPE = 1392 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_VLVREQ_CONTROL_INVALID_TARGET_TYPE_419", 419); 1393 1394 /** 1395 * Unable to process the provided VLV request control because an error occurred while attempting to decode the control value: %s 1396 */ 1397 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_VLVREQ_CONTROL_CANNOT_DECODE_VALUE = 1398 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_VLVREQ_CONTROL_CANNOT_DECODE_VALUE_420", 420); 1399 1400 /** 1401 * Unable to decode the provided control as a VLV response control because it does not include a control value 1402 */ 1403 public static final LocalizableMessageDescriptor.Arg0 INFO_VLVRES_CONTROL_NO_VALUE = 1404 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_VLVRES_CONTROL_NO_VALUE_421", 421); 1405 1406 /** 1407 * Unable to process the provided VLV response control because an error occurred while attempting to decode the control value: %s 1408 */ 1409 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_VLVRES_CONTROL_CANNOT_DECODE_VALUE = 1410 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_VLVRES_CONTROL_CANNOT_DECODE_VALUE_423", 423); 1411 1412 /** 1413 * The authorization ID "%s" contained in the geteffectiverights control is invalid because it does not start with "dn:" to indicate a user DN 1414 */ 1415 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_GETEFFECTIVERIGHTS_INVALID_AUTHZID = 1416 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_GETEFFECTIVERIGHTS_INVALID_AUTHZID_424", 424); 1417 1418 /** 1419 * Cannot decode the provided geteffectiverights request control: %s 1420 */ 1421 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_GETEFFECTIVERIGHTS_DECODE_ERROR = 1422 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_GETEFFECTIVERIGHTS_DECODE_ERROR_425", 425); 1423 1424 /** 1425 * An LDAP filter enclosed in apostrophes is invalid: %s 1426 */ 1427 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_FILTER_ENCLOSED_IN_APOSTROPHES = 1428 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_ENCLOSED_IN_APOSTROPHES_427", 427); 1429 1430 /** 1431 * Specifies whether to enable the JMX connection handler 1432 */ 1433 public static final LocalizableMessageDescriptor.Arg0 INFO_JMX_CONNHANDLER_DESCRIPTION_ENABLE = 1434 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "INFO_JMX_CONNHANDLER_DESCRIPTION_ENABLE_428", 428); 1435 1436 /** 1437 * The provided search filter contains an invalid attribute type '%s' with invalid character '%s' at position %d 1438 */ 1439 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Number> ERR_LDAP_FILTER_INVALID_CHAR_IN_ATTR_TYPE = 1440 new LocalizableMessageDescriptor.Arg3<Object, Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_INVALID_CHAR_IN_ATTR_TYPE_429", 429); 1441 1442 /** 1443 * The provided search filter "%s" could not be decoded because the extensible match component starting at position %d did not include either an attribute description or a matching rule ID. At least one of them must be provided 1444 */ 1445 public static final LocalizableMessageDescriptor.Arg2<Object, Number> ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_AD_OR_MR = 1446 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_AD_OR_MR_430", 430); 1447 1448 /** 1449 * LDAPv2 clients are not allowed to use request controls 1450 */ 1451 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAPV2_CONTROLS_NOT_ALLOWED = 1452 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAPV2_CONTROLS_NOT_ALLOWED_431", 431); 1453 1454 /** 1455 * The %s connection handler defined in configuration entry %s was unable to bind to %s:%d: %s 1456 */ 1457 public static final LocalizableMessageDescriptor.Arg5<Object, Object, Object, Number, Object> ERR_CONNHANDLER_CANNOT_BIND = 1458 new LocalizableMessageDescriptor.Arg5<Object, Object, Object, Number, Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_CANNOT_BIND_432", 432); 1459 1460 /** 1461 * You do not have sufficient privileges to perform search operations through JMX 1462 */ 1463 public static final LocalizableMessageDescriptor.Arg0 ERR_JMX_SEARCH_INSUFFICIENT_PRIVILEGES = 1464 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_JMX_SEARCH_INSUFFICIENT_PRIVILEGES_438", 438); 1465 1466 /** 1467 * You do not have sufficient privileges to establish the connection through JMX. At least JMX_READ privilege is required 1468 */ 1469 public static final LocalizableMessageDescriptor.Arg0 ERR_JMX_INSUFFICIENT_PRIVILEGES = 1470 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_JMX_INSUFFICIENT_PRIVILEGES_439", 439); 1471 1472 /** 1473 * User %s does not exist in the directory 1474 */ 1475 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_INTERNALCONN_NO_SUCH_USER = 1476 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_INTERNALCONN_NO_SUCH_USER_440", 440); 1477 1478 /** 1479 * This output stream has been closed 1480 */ 1481 public static final LocalizableMessageDescriptor.Arg0 ERR_INTERNALOS_CLOSED = 1482 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_INTERNALOS_CLOSED_441", 441); 1483 1484 /** 1485 * The provided LDAP message had an invalid operation type (%s) for a request 1486 */ 1487 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_INTERNALOS_INVALID_REQUEST = 1488 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_INTERNALOS_INVALID_REQUEST_442", 442); 1489 1490 /** 1491 * SASL bind operations are not supported over internal LDAP sockets 1492 */ 1493 public static final LocalizableMessageDescriptor.Arg0 ERR_INTERNALOS_SASL_BIND_NOT_SUPPORTED = 1494 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_INTERNALOS_SASL_BIND_NOT_SUPPORTED_443", 443); 1495 1496 /** 1497 * StartTLS operations are not supported over internal LDAP sockets 1498 */ 1499 public static final LocalizableMessageDescriptor.Arg0 ERR_INTERNALOS_STARTTLS_NOT_SUPPORTED = 1500 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_INTERNALOS_STARTTLS_NOT_SUPPORTED_444", 444); 1501 1502 /** 1503 * The value %s specified as the LDIF directory path for the LDIF connection handler defined in configuration entry %s exists but is not a directory. The specified path must be a directory. The LDIF connection handler will start, but will not be able to proces any changes until this path is changed to a directory 1504 */ 1505 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_NOT_DIRECTORY = 1506 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_NOT_DIRECTORY_445", 445); 1507 1508 /** 1509 * The directory %s referenced by the LDIF connection handler defined in configuration entry %s does not exist. The LDIF connection handler will start, but will not be able to process any changes until this directory is created 1510 */ 1511 public static final LocalizableMessageDescriptor.Arg2<Object, Object> WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_MISSING = 1512 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_MISSING_446", 446); 1513 1514 /** 1515 * An error occurred while trying to read a change record from the LDIF file: %s. This change will be skipped but processing on the LDIF file will continue 1516 */ 1517 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_NONFATAL = 1518 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_NONFATAL_447", 447); 1519 1520 /** 1521 * An error occurred while trying to read a change record from the LDIF file: %s. No further processing on this LDIF file can be performed 1522 */ 1523 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_FATAL = 1524 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_FATAL_448", 448); 1525 1526 /** 1527 * Unsupported change type %s 1528 */ 1529 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDIF_CONNHANDLER_UNKNOWN_CHANGETYPE = 1530 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_LDIF_CONNHANDLER_UNKNOWN_CHANGETYPE_449", 449); 1531 1532 /** 1533 * Result Code: %d (%s) 1534 */ 1535 public static final LocalizableMessageDescriptor.Arg2<Number, Object> INFO_LDIF_CONNHANDLER_RESULT_CODE = 1536 new LocalizableMessageDescriptor.Arg2<Number, Object>(ProtocolMessages.class, RESOURCE, "INFO_LDIF_CONNHANDLER_RESULT_CODE_450", 450); 1537 1538 /** 1539 * Additional Info: %s 1540 */ 1541 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDIF_CONNHANDLER_ERROR_MESSAGE = 1542 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_LDIF_CONNHANDLER_ERROR_MESSAGE_451", 451); 1543 1544 /** 1545 * Matched DN: %s 1546 */ 1547 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDIF_CONNHANDLER_MATCHED_DN = 1548 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_LDIF_CONNHANDLER_MATCHED_DN_452", 452); 1549 1550 /** 1551 * Referral URL: %s 1552 */ 1553 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_LDIF_CONNHANDLER_REFERRAL_URL = 1554 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_LDIF_CONNHANDLER_REFERRAL_URL_453", 453); 1555 1556 /** 1557 * An I/O error occurred while the LDIF connection handler was processing LDIF file %s: %s 1558 */ 1559 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_CONNHANDLER_IO_ERROR = 1560 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDIF_CONNHANDLER_IO_ERROR_454", 454); 1561 1562 /** 1563 * An error occurred while the LDIF connection handler was attempting to rename partially-processed file from %s to %s: %s 1564 */ 1565 public static final LocalizableMessageDescriptor.Arg3<Object, Object, Object> ERR_LDIF_CONNHANDLER_CANNOT_RENAME = 1566 new LocalizableMessageDescriptor.Arg3<Object, Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDIF_CONNHANDLER_CANNOT_RENAME_455", 455); 1567 1568 /** 1569 * An error occurred while the LDIF connection handler was attempting to delete processed file %s: %s 1570 */ 1571 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_LDIF_CONNHANDLER_CANNOT_DELETE = 1572 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_LDIF_CONNHANDLER_CANNOT_DELETE_456", 456); 1573 1574 /** 1575 * Address already in use 1576 */ 1577 public static final LocalizableMessageDescriptor.Arg0 ERR_CONNHANDLER_ADDRESS_INUSE = 1578 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_ADDRESS_INUSE_457", 457); 1579 1580 /** 1581 * Cannot decode the provided subentries control because it does not have a value 1582 */ 1583 public static final LocalizableMessageDescriptor.Arg0 ERR_SUBENTRIES_NO_CONTROL_VALUE = 1584 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SUBENTRIES_NO_CONTROL_VALUE_458", 458); 1585 1586 /** 1587 * Cannot decode the provided subentries control because an error occurred while attempting to decode the control value: %s 1588 */ 1589 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SUBENTRIES_CANNOT_DECODE_VALUE = 1590 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_SUBENTRIES_CANNOT_DECODE_VALUE_459", 459); 1591 1592 /** 1593 * No Configuration was defined for this connection handler. The configuration parameters ds-cfg-listen-port and ds-cfg-trap-port are required by the connection handler to start 1594 */ 1595 public static final LocalizableMessageDescriptor.Arg0 ERR_SNMP_CONNHANDLER_NO_CONFIGURATION = 1596 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_NO_CONFIGURATION_1462", 1462); 1597 1598 /** 1599 * Traps Destination %s is an unknown host. Traps will not be sent to this destination 1600 */ 1601 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SNMP_CONNHANDLER_TRAPS_DESTINATION = 1602 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_TRAPS_DESTINATION_1463", 1463); 1603 1604 /** 1605 * You do not have the appropriate OpenDMK jar files to enable the SNMP Connection Handler. Please go under http://opendmk.dev.java.net and set the opendmk-jarfile configuration parameter to set the full path of the required jdmkrt.jar file. The SNMP connection Handler didn't started 1606 */ 1607 public static final LocalizableMessageDescriptor.Arg0 ERR_SNMP_CONNHANDLER_NO_OPENDMK_JARFILES = 1608 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_NO_OPENDMK_JARFILES_1464", 1464); 1609 1610 /** 1611 * Cannot initialize the SNMP Connection Handler. Please check the configuration attributes 1612 */ 1613 public static final LocalizableMessageDescriptor.Arg0 ERR_SNMP_CONNHANDLER_BAD_CONFIGURATION = 1614 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_BAD_CONFIGURATION_1465", 1465); 1615 1616 /** 1617 * No valid trap destinations has been found. No trap will be sent 1618 */ 1619 public static final LocalizableMessageDescriptor.Arg0 ERR_SNMP_CONNHANDLER_NO_VALID_TRAP_DESTINATIONS = 1620 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_NO_VALID_TRAP_DESTINATIONS_1466", 1466); 1621 1622 /** 1623 * Cannot decode the provided subtree delete control because it contains a value 1624 */ 1625 public static final LocalizableMessageDescriptor.Arg0 ERR_SUBTREE_DELETE_INVALID_CONTROL_VALUE = 1626 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_SUBTREE_DELETE_INVALID_CONTROL_VALUE_1503", 1503); 1627 1628 /** 1629 * An error occurred while attempting to initialize the SSL context for use in the LDAP Connection Handler: %s 1630 */ 1631 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONNHANDLER_SSL_CANNOT_INITIALIZE = 1632 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_SSL_CANNOT_INITIALIZE_1504", 1504); 1633 1634 /** 1635 * The Directory Server does not support LDAP protocol version %d. This connection will be closed 1636 */ 1637 public static final LocalizableMessageDescriptor.Arg1<Number> ERR_LDAP_UNSUPPORTED_PROTOCOL_VERSION = 1638 new LocalizableMessageDescriptor.Arg1<Number>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_UNSUPPORTED_PROTOCOL_VERSION_1505", 1505); 1639 1640 /** 1641 * The specified OpenDMK jar file '%s' could not be found. Verify that the value set in the opendmk-jarfile configuration parameter of the SNMP connection handler is the valid path to the jdmkrt.jar file and that the file is accessible 1642 */ 1643 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_DOES_NOT_EXIST = 1644 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_DOES_NOT_EXIST_1506", 1506); 1645 1646 /** 1647 * The required classes could not be loaded using jar file '%s'. Verify that the jar file is not corrupted 1648 */ 1649 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_NOT_OPERATIONAL = 1650 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_NOT_OPERATIONAL_1507", 1507); 1651 1652 /** 1653 * Cannot decode the provided control %s because an error occurred while attempting to decode the control value: %s 1654 */ 1655 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_CANNOT_DECODE_CONTROL_VALUE = 1656 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_CANNOT_DECODE_CONTROL_VALUE_1508", 1508); 1657 1658 /** 1659 * An error occurred while processing the request %s: %s 1660 */ 1661 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_HTTP_ERROR_WHILE_PROCESSING_REQUEST = 1662 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_HTTP_ERROR_WHILE_PROCESSING_REQUEST_1508", 1508); 1663 1664 /** 1665 * Cannot decode the provided entry changelog notification control because it does not have a value 1666 */ 1667 public static final LocalizableMessageDescriptor.Arg0 ERR_ECLN_NO_CONTROL_VALUE = 1668 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_ECLN_NO_CONTROL_VALUE_1509", 1509); 1669 1670 /** 1671 * Cannot decode the provided entry changelog notification control because an error occurred while attempting to decode the control value: %s 1672 */ 1673 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_ECLN_CANNOT_DECODE_VALUE = 1674 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_ECLN_CANNOT_DECODE_VALUE_1510", 1510); 1675 1676 /** 1677 * The connection to the Directory Server was closed while waiting for a response 1678 */ 1679 public static final LocalizableMessageDescriptor.Arg0 ERR_UNEXPECTED_CONNECTION_CLOSURE = 1680 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_UNEXPECTED_CONNECTION_CLOSURE_1511", 1511); 1681 1682 /** 1683 * Connection handler '%s' does not specify the number of request handler threads: defaulting to %d threads 1684 */ 1685 public static final LocalizableMessageDescriptor.Arg2<Object, Number> INFO_ERGONOMIC_SIZING_OF_REQUEST_HANDLER_THREADS = 1686 new LocalizableMessageDescriptor.Arg2<Object, Number>(ProtocolMessages.class, RESOURCE, "INFO_ERGONOMIC_SIZING_OF_REQUEST_HANDLER_THREADS_1512", 1512); 1687 1688 /** 1689 * An IO error occurred while reading a request from the client: %s 1690 */ 1691 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_LDAP_CLIENT_IO_ERROR_DURING_READ = 1692 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CLIENT_IO_ERROR_DURING_READ_1513", 1513); 1693 1694 /** 1695 * Connection reset by client 1696 */ 1697 public static final LocalizableMessageDescriptor.Arg0 ERR_LDAP_CLIENT_IO_ERROR_BEFORE_READ = 1698 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_LDAP_CLIENT_IO_ERROR_BEFORE_READ_1514", 1514); 1699 1700 /** 1701 * The server received configuration changes that require a restart of the %s connection handler to take effect 1702 */ 1703 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_CONNHANDLER_CONFIG_CHANGES_REQUIRE_RESTART = 1704 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_CONNHANDLER_CONFIG_CHANGES_REQUIRE_RESTART_1516", 1516); 1705 1706 /** 1707 * The GSER value does not contain a String matching the pattern %s at the current position: %s 1708 */ 1709 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_GSER_PATTERN_NO_MATCH = 1710 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_PATTERN_NO_MATCH_1517", 1517); 1711 1712 /** 1713 * The GSER value does not contain a separator at the current position: %s 1714 */ 1715 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_NO_VALID_SEPARATOR = 1716 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_NO_VALID_SEPARATOR_1518", 1518); 1717 1718 /** 1719 * The GSER value does not contain a valid String value at the current position: %s 1720 */ 1721 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_NO_VALID_STRING = 1722 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_NO_VALID_STRING_1519", 1519); 1723 1724 /** 1725 * The GSER value does not contain a valid integer value at the current position: %s 1726 */ 1727 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_NO_VALID_INTEGER = 1728 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_NO_VALID_INTEGER_1520", 1520); 1729 1730 /** 1731 * The GSER value does not contain a valid identifier at the current position: %s 1732 */ 1733 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_NO_VALID_IDENTIFIER = 1734 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_NO_VALID_IDENTIFIER_1521", 1521); 1735 1736 /** 1737 * The GSER value does not contain a whitespace character at the current position: %s 1738 */ 1739 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_SPACE_CHAR_EXPECTED = 1740 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_SPACE_CHAR_EXPECTED_1522", 1522); 1741 1742 /** 1743 * The GSER value does not contain a valid IdentifiedChoiceValue at the current position: %s 1744 */ 1745 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_GSER_NO_VALID_IDENTIFIEDCHOICE = 1746 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_GSER_NO_VALID_IDENTIFIEDCHOICE_1523", 1523); 1747 1748 /** 1749 * The keystore %s seems to be missing, this may render the secure port inoperative for '%s'. Verify the keystore setting in the configuration. 1750 */ 1751 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_NULL_KEY_PROVIDER_MANAGER = 1752 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_NULL_KEY_PROVIDER_MANAGER_1524", 1524); 1753 1754 /** 1755 * Authorization as '%s' specified in the proxied authorization control is not permitted 1756 */ 1757 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH_AUTHZ_NOT_PERMITTED = 1758 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH_AUTHZ_NOT_PERMITTED_1525", 1525); 1759 1760 /** 1761 * The key with alias '%s' was not found for '%s'. Verify that the keystore is properly configured 1762 */ 1763 public static final LocalizableMessageDescriptor.Arg2<Object, Object> ERR_KEYSTORE_DOES_NOT_CONTAIN_ALIAS = 1764 new LocalizableMessageDescriptor.Arg2<Object, Object>(ProtocolMessages.class, RESOURCE, "ERR_KEYSTORE_DOES_NOT_CONTAIN_ALIAS_1526", 1526); 1765 1766 /** 1767 * No usable key was found for '%s'. Verify the keystore content 1768 */ 1769 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_INVALID_KEYSTORE = 1770 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_INVALID_KEYSTORE_1527", 1527); 1771 1772 /** 1773 * Disabling %s 1774 */ 1775 public static final LocalizableMessageDescriptor.Arg1<Object> INFO_DISABLE_CONNECTION = 1776 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "INFO_DISABLE_CONNECTION_1528", 1528); 1777 1778 /** 1779 * Failed to initialize Http Connection Handler 1780 */ 1781 public static final LocalizableMessageDescriptor.Arg0 ERR_INITIALIZE_HTTP_CONNECTION_HANDLER = 1782 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_INITIALIZE_HTTP_CONNECTION_HANDLER_1529", 1529); 1783 1784 /** 1785 * No value was provided for the transaction id control, whereas an UTF-8 encoded value is expected 1786 */ 1787 public static final LocalizableMessageDescriptor.Arg0 ERR_TRANSACTION_ID_CONTROL_HAS_NO_VALUE = 1788 new LocalizableMessageDescriptor.Arg0(ProtocolMessages.class, RESOURCE, "ERR_TRANSACTION_ID_CONTROL_HAS_NO_VALUE_1530", 1530); 1789 1790 /** 1791 * Exception on the underlying client connection: %s 1792 */ 1793 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_UNEXPECTED_EXCEPTION_ON_CLIENT_CONNECTION = 1794 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_UNEXPECTED_EXCEPTION_ON_CLIENT_CONNECTION_1531", 1531); 1795 1796 /** 1797 * The underlying client connection timed out or closed: %s 1798 */ 1799 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_IO_ERROR_ON_CLIENT_CONNECTION = 1800 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_IO_ERROR_ON_CLIENT_CONNECTION_1532", 1532); 1801 1802 /** 1803 * Use of the proxied authorization V2 control for user %s is not allowed: the account is disabled 1804 */ 1805 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_ACCOUNT_DISABLED = 1806 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_ACCOUNT_DISABLED_1533", 1533); 1807 1808 /** 1809 * Use of the proxied authorization V2 control for user %s is not allowed: the account is expired 1810 */ 1811 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_ACCOUNT_EXPIRED = 1812 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_ACCOUNT_EXPIRED_1534", 1534); 1813 1814 /** 1815 * Use of the proxied authorization V2 control for user %s is not allowed: the account is locked 1816 */ 1817 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_ACCOUNT_LOCKED = 1818 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_ACCOUNT_LOCKED_1535", 1535); 1819 1820 /** 1821 * Use of the proxied authorization V2 control for user %s is not allowed: the account's password is expired 1822 */ 1823 public static final LocalizableMessageDescriptor.Arg1<Object> ERR_PROXYAUTH2_PASSWORD_EXPIRED = 1824 new LocalizableMessageDescriptor.Arg1<Object>(ProtocolMessages.class, RESOURCE, "ERR_PROXYAUTH2_PASSWORD_EXPIRED_1536", 1536); 1825 1826}