1 /*
2 * Copyright 2012-2017 CodeLibs Project and the Others.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13 * either express or implied. See the License for the specific language
14 * governing permissions and limitations under the License.
15 */
16 package org.codelibs.fess.mylasta.action;
17
18 import org.lastaflute.core.message.UserMessage;
19
20 /**
21 * The keys for message.
22 * @author FreeGen
23 */
24 public class FessMessages extends FessLabels {
25
26 /** The serial version UID for object serialization. (Default) */
27 private static final long serialVersionUID = 1L;
28
29 /** The key of the message: */
30 public static final String ERRORS_front_header = "{errors.front_header}";
31
32 /** The key of the message: */
33 public static final String ERRORS_front_footer = "{errors.front_footer}";
34
35 /** The key of the message: <div class="alert alert-warning"> */
36 public static final String ERRORS_front_prefix = "{errors.front_prefix}";
37
38 /** The key of the message: </div> */
39 public static final String ERRORS_front_suffix = "{errors.front_suffix}";
40
41 /** The key of the message: <ul class="has-error"> */
42 public static final String ERRORS_HEADER = "{errors.header}";
43
44 /** The key of the message: </ul> */
45 public static final String ERRORS_FOOTER = "{errors.footer}";
46
47 /** The key of the message: <li><i class="fa fa-exclamation-circle"></i> */
48 public static final String ERRORS_PREFIX = "{errors.prefix}";
49
50 /** The key of the message: </li> */
51 public static final String ERRORS_SUFFIX = "{errors.suffix}";
52
53 /** The key of the message: {item} must be false. */
54 public static final String CONSTRAINTS_AssertFalse_MESSAGE = "{constraints.AssertFalse.message}";
55
56 /** The key of the message: {item} must be true. */
57 public static final String CONSTRAINTS_AssertTrue_MESSAGE = "{constraints.AssertTrue.message}";
58
59 /** The key of the message: {item} must be less than ${inclusive == true ? 'or equal to ' : ''}{value}. */
60 public static final String CONSTRAINTS_DecimalMax_MESSAGE = "{constraints.DecimalMax.message}";
61
62 /** The key of the message: {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}. */
63 public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}";
64
65 /** The key of the message: {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected). */
66 public static final String CONSTRAINTS_Digits_MESSAGE = "{constraints.Digits.message}";
67
68 /** The key of the message: {item} must be in the future. */
69 public static final String CONSTRAINTS_Future_MESSAGE = "{constraints.Future.message}";
70
71 /** The key of the message: {item} must be less than or equal to {value}. */
72 public static final String CONSTRAINTS_Max_MESSAGE = "{constraints.Max.message}";
73
74 /** The key of the message: {item} must be greater than or equal to {value}. */
75 public static final String CONSTRAINTS_Min_MESSAGE = "{constraints.Min.message}";
76
77 /** The key of the message: {item} may not be null. */
78 public static final String CONSTRAINTS_NotNull_MESSAGE = "{constraints.NotNull.message}";
79
80 /** The key of the message: {item} must be null. */
81 public static final String CONSTRAINTS_Null_MESSAGE = "{constraints.Null.message}";
82
83 /** The key of the message: {item} must be in the past. */
84 public static final String CONSTRAINTS_Past_MESSAGE = "{constraints.Past.message}";
85
86 /** The key of the message: {item} must match "{regexp}". */
87 public static final String CONSTRAINTS_Pattern_MESSAGE = "{constraints.Pattern.message}";
88
89 /** The key of the message: Size of {item} must be between {min} and {max}. */
90 public static final String CONSTRAINTS_Size_MESSAGE = "{constraints.Size.message}";
91
92 /** The key of the message: {item} is invalid credit card number. */
93 public static final String CONSTRAINTS_CreditCardNumber_MESSAGE = "{constraints.CreditCardNumber.message}";
94
95 /** The key of the message: {item} is invalid {type} barcode. */
96 public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
97
98 /** The key of the message: {item} is not a well-formed email address. */
99 public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
100
101 /** The key of the message: Length of {item} must be between {min} and {max}. */
102 public static final String CONSTRAINTS_Length_MESSAGE = "{constraints.Length.message}";
103
104 /** The key of the message: The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed. */
105 public static final String CONSTRAINTS_LuhnCheck_MESSAGE = "{constraints.LuhnCheck.message}";
106
107 /** The key of the message: The check digit for ${value} is invalid, Modulo 10 checksum failed. */
108 public static final String CONSTRAINTS_Mod10Check_MESSAGE = "{constraints.Mod10Check.message}";
109
110 /** The key of the message: The check digit for ${value} is invalid, Modulo 11 checksum failed. */
111 public static final String CONSTRAINTS_Mod11Check_MESSAGE = "{constraints.Mod11Check.message}";
112
113 /** The key of the message: The check digit for ${value} is invalid, ${modType} checksum failed. */
114 public static final String CONSTRAINTS_ModCheck_MESSAGE = "{constraints.ModCheck.message}";
115
116 /** The key of the message: {item} may not be empty. */
117 public static final String CONSTRAINTS_NotBlank_MESSAGE = "{constraints.NotBlank.message}";
118
119 /** The key of the message: {item} may not be empty. */
120 public static final String CONSTRAINTS_NotEmpty_MESSAGE = "{constraints.NotEmpty.message}";
121
122 /** The key of the message: script expression "{script}" didn't evaluate to true. */
123 public static final String CONSTRAINTS_ParametersScriptAssert_MESSAGE = "{constraints.ParametersScriptAssert.message}";
124
125 /** The key of the message: {item} must be between {min} and {max}. */
126 public static final String CONSTRAINTS_Range_MESSAGE = "{constraints.Range.message}";
127
128 /** The key of the message: {item} may have unsafe html content. */
129 public static final String CONSTRAINTS_SafeHtml_MESSAGE = "{constraints.SafeHtml.message}";
130
131 /** The key of the message: script expression "{script}" didn't evaluate to true. */
132 public static final String CONSTRAINTS_ScriptAssert_MESSAGE = "{constraints.ScriptAssert.message}";
133
134 /** The key of the message: {item} must be a valid URL. */
135 public static final String CONSTRAINTS_URL_MESSAGE = "{constraints.URL.message}";
136
137 /** The key of the message: {item} is required. */
138 public static final String CONSTRAINTS_Required_MESSAGE = "{constraints.Required.message}";
139
140 /** The key of the message: {item} should be numeric. */
141 public static final String CONSTRAINTS_TypeInteger_MESSAGE = "{constraints.TypeInteger.message}";
142
143 /** The key of the message: {item} should be numeric. */
144 public static final String CONSTRAINTS_TypeLong_MESSAGE = "{constraints.TypeLong.message}";
145
146 /** The key of the message: {item} should be numeric. */
147 public static final String CONSTRAINTS_TypeFloat_MESSAGE = "{constraints.TypeFloat.message}";
148
149 /** The key of the message: {item} should be numeric. */
150 public static final String CONSTRAINTS_TypeDouble_MESSAGE = "{constraints.TypeDouble.message}";
151
152 /** The key of the message: {item} cannot convert as {propertyType}. */
153 public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}";
154
155 /** The key of the message: {item} has wrong URI. */
156 public static final String CONSTRAINTS_UriType_MESSAGE = "{constraints.UriType.message}";
157
158 /** The key of the message: {item} is invalid cron expression. */
159 public static final String CONSTRAINTS_CronExpression_MESSAGE = "{constraints.CronExpression.message}";
160
161 /** The key of the message: Login failed. */
162 public static final String ERRORS_LOGIN_FAILURE = "{errors.login.failure}";
163
164 /** The key of the message: Please retry because of illegal transition. */
165 public static final String ERRORS_APP_ILLEGAL_TRANSITION = "{errors.app.illegal.transition}";
166
167 /** The key of the message: others might be updated, so retry. */
168 public static final String ERRORS_APP_DB_ALREADY_DELETED = "{errors.app.db.already.deleted}";
169
170 /** The key of the message: others might be updated, so retry. */
171 public static final String ERRORS_APP_DB_ALREADY_UPDATED = "{errors.app.db.already.updated}";
172
173 /** The key of the message: already existing data, so retry. */
174 public static final String ERRORS_APP_DB_ALREADY_EXISTS = "{errors.app.db.already.exists}";
175
176 /** The key of the message: Your request might have been processed before this request. Please check and retry it. */
177 public static final String ERRORS_APP_DOUBLE_SUBMIT_REQUEST = "{errors.app.double.submit.request}";
178
179 /** The key of the message: Username or Password is not correct. */
180 public static final String ERRORS_login_error = "{errors.login_error}";
181
182 /** The key of the message: Failed to process SSO login. */
183 public static final String ERRORS_sso_login_error = "{errors.sso_login_error}";
184
185 /** The key of the message: Could not find {0}. */
186 public static final String ERRORS_could_not_find_log_file = "{errors.could_not_find_log_file}";
187
188 /** The key of the message: Failed to start a crawl process. */
189 public static final String ERRORS_failed_to_start_crawl_process = "{errors.failed_to_start_crawl_process}";
190
191 /** The key of the message: Invalid JSP file. */
192 public static final String ERRORS_invalid_design_jsp_file_name = "{errors.invalid_design_jsp_file_name}";
193
194 /** The key of the message: JSP file does not exist. */
195 public static final String ERRORS_design_jsp_file_does_not_exist = "{errors.design_jsp_file_does_not_exist}";
196
197 /** The key of the message: The file name is not specified. */
198 public static final String ERRORS_design_file_name_is_not_found = "{errors.design_file_name_is_not_found}";
199
200 /** The key of the message: Failed to upload an image file. */
201 public static final String ERRORS_failed_to_write_design_image_file = "{errors.failed_to_write_design_image_file}";
202
203 /** The key of the message: Failed to update a jsp file. */
204 public static final String ERRORS_failed_to_update_jsp_file = "{errors.failed_to_update_jsp_file}";
205
206 /** The key of the message: The file name is invalid. */
207 public static final String ERRORS_design_file_name_is_invalid = "{errors.design_file_name_is_invalid}";
208
209 /** The key of the message: The kind of file is unsupported. */
210 public static final String ERRORS_design_file_is_unsupported_type = "{errors.design_file_is_unsupported_type}";
211
212 /** The key of the message: Failed to create a crawling config. */
213 public static final String ERRORS_failed_to_create_crawling_config_at_wizard = "{errors.failed_to_create_crawling_config_at_wizard}";
214
215 /** The key of the message: This feature is disabled. */
216 public static final String ERRORS_design_editor_disabled = "{errors.design_editor_disabled}";
217
218 /** The key of the message: Not Found: {0} */
219 public static final String ERRORS_not_found_on_file_system = "{errors.not_found_on_file_system}";
220
221 /** The key of the message: Could not open {0}. <br/>Please check if the file is associated with an application. */
222 public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
223
224 /** The key of the message: No more results could be displayed. */
225 public static final String ERRORS_result_size_exceeded = "{errors.result_size_exceeded}";
226
227 /** The key of the message: {0} file does not exist. */
228 public static final String ERRORS_target_file_does_not_exist = "{errors.target_file_does_not_exist}";
229
230 /** The key of the message: Failed to delete {0} file. */
231 public static final String ERRORS_failed_to_delete_file = "{errors.failed_to_delete_file}";
232
233 /** The key of the message: Not found Doc ID:{0} */
234 public static final String ERRORS_docid_not_found = "{errors.docid_not_found}";
235
236 /** The key of the message: Not found URL of Doc ID:{0} */
237 public static final String ERRORS_document_not_found = "{errors.document_not_found}";
238
239 /** The key of the message: Could not load from this server: {0} */
240 public static final String ERRORS_not_load_from_server = "{errors.not_load_from_server}";
241
242 /** The key of the message: Failed to start job {0}. */
243 public static final String ERRORS_failed_to_start_job = "{errors.failed_to_start_job}";
244
245 /** The key of the message: Failed to stop job {0}. */
246 public static final String ERRORS_failed_to_stop_job = "{errors.failed_to_stop_job}";
247
248 /** The key of the message: Failed to download the Synonym file. */
249 public static final String ERRORS_failed_to_download_synonym_file = "{errors.failed_to_download_synonym_file}";
250
251 /** The key of the message: Failed to upload the Synonym file. */
252 public static final String ERRORS_failed_to_upload_synonym_file = "{errors.failed_to_upload_synonym_file}";
253
254 /** The key of the message: Failed to download the Kuromoji file. */
255 public static final String ERRORS_failed_to_download_kuromoji_file = "{errors.failed_to_download_kuromoji_file}";
256
257 /** The key of the message: Failed to upload the Kuromoji file. */
258 public static final String ERRORS_failed_to_upload_kuromoji_file = "{errors.failed_to_upload_kuromoji_file}";
259
260 /** The key of the message: Failed to download the Protwords file. */
261 public static final String ERRORS_failed_to_download_protwords_file = "{errors.failed_to_download_protwords_file}";
262
263 /** The key of the message: Failed to upload the Protwords file. */
264 public static final String ERRORS_failed_to_upload_protwords_file = "{errors.failed_to_upload_protwords_file}";
265
266 /** The key of the message: Failed to download the Elevate file. */
267 public static final String ERRORS_failed_to_download_elevate_file = "{errors.failed_to_download_elevate_file}";
268
269 /** The key of the message: Failed to upload the Elevate file. */
270 public static final String ERRORS_failed_to_upload_elevate_file = "{errors.failed_to_upload_elevate_file}";
271
272 /** The key of the message: Failed to download the Badword file. */
273 public static final String ERRORS_failed_to_download_badword_file = "{errors.failed_to_download_badword_file}";
274
275 /** The key of the message: Failed to upload the Badword file. */
276 public static final String ERRORS_failed_to_upload_badword_file = "{errors.failed_to_upload_badword_file}";
277
278 /** The key of the message: Failed to download the Mapping file. */
279 public static final String ERRORS_failed_to_download_mapping_file = "{errors.failed_to_download_mapping_file}";
280
281 /** The key of the message: Failed to upload the Mapping file. */
282 public static final String ERRORS_failed_to_upload_mapping_file = "{errors.failed_to_upload_mapping_file}";
283
284 /** The key of the message: "{1}" in "{0}" is invalid. */
285 public static final String ERRORS_invalid_str_is_included = "{errors.invalid_str_is_included}";
286
287 /** The key of the message: Password is required. */
288 public static final String ERRORS_blank_password = "{errors.blank_password}";
289
290 /** The key of the message: Confirm Password does not match. */
291 public static final String ERRORS_invalid_confirm_password = "{errors.invalid_confirm_password}";
292
293 /** The key of the message: Crawler is running. The document cannot be deleted. */
294 public static final String ERRORS_cannot_delete_doc_because_of_running = "{errors.cannot_delete_doc_because_of_running}";
295
296 /** The key of the message: Failed to delete document. */
297 public static final String ERRORS_failed_to_delete_doc_in_admin = "{errors.failed_to_delete_doc_in_admin}";
298
299 /** The key of the message: Failed to send the test mail. */
300 public static final String ERRORS_failed_to_send_testmail = "{errors.failed_to_send_testmail}";
301
302 /** The key of the message: Could not find index for backup. */
303 public static final String ERRORS_could_not_find_backup_index = "{errors.could_not_find_backup_index}";
304
305 /** The key of the message: The current password is incorrect. */
306 public static final String ERRORS_no_user_for_changing_password = "{errors.no_user_for_changing_password}";
307
308 /** The key of the message: Failed to change your password. */
309 public static final String ERRORS_failed_to_change_password = "{errors.failed_to_change_password}";
310
311 /** The key of the message: Unknown version information. */
312 public static final String ERRORS_unknown_version_for_upgrade = "{errors.unknown_version_for_upgrade}";
313
314 /** The key of the message: Failed to upgrade from {0}: {1} */
315 public static final String ERRORS_failed_to_upgrade_from = "{errors.failed_to_upgrade_from}";
316
317 /** The key of the message: Failed to start reindexing from {0} to {1} */
318 public static final String ERRORS_failed_to_reindex = "{errors.failed_to_reindex}";
319
320 /** The key of the message: Failed to read request file: {0} */
321 public static final String ERRORS_failed_to_read_request_file = "{errors.failed_to_read_request_file}";
322
323 /** The key of the message: Invalid header: {0} */
324 public static final String ERRORS_invalid_header_for_request_file = "{errors.invalid_header_for_request_file}";
325
326 /** The key of the message: Could not delete logged in user. */
327 public static final String ERRORS_could_not_delete_logged_in_user = "{errors.could_not_delete_logged_in_user}";
328
329 /** The key of the message: Unauthorized request. */
330 public static final String ERRORS_unauthorized_request = "{errors.unauthorized_request}";
331
332 /** The key of the message: The given query has unknown condition. */
333 public static final String ERRORS_invalid_query_unknown = "{errors.invalid_query_unknown}";
334
335 /** The key of the message: The given query is invalid. */
336 public static final String ERRORS_invalid_query_parse_error = "{errors.invalid_query_parse_error}";
337
338 /** The key of the message: The given sort ({0}) is invalid. */
339 public static final String ERRORS_invalid_query_sort_value = "{errors.invalid_query_sort_value}";
340
341 /** The key of the message: The given sort ({0}) is not supported. */
342 public static final String ERRORS_invalid_query_unsupported_sort_field = "{errors.invalid_query_unsupported_sort_field}";
343
344 /** The key of the message: The given sort order ({0}) is not supported. */
345 public static final String ERRORS_invalid_query_unsupported_sort_order = "{errors.invalid_query_unsupported_sort_order}";
346
347 /** The key of the message: Invalid mode(expected value is {0}, but it's {1}). */
348 public static final String ERRORS_crud_invalid_mode = "{errors.crud_invalid_mode}";
349
350 /** The key of the message: Failed to create a new data. */
351 public static final String ERRORS_crud_failed_to_create_instance = "{errors.crud_failed_to_create_instance}";
352
353 /** The key of the message: Failed to create a new data. ({0}) */
354 public static final String ERRORS_crud_failed_to_create_crud_table = "{errors.crud_failed_to_create_crud_table}";
355
356 /** The key of the message: Failed to update the data. ({0}) */
357 public static final String ERRORS_crud_failed_to_update_crud_table = "{errors.crud_failed_to_update_crud_table}";
358
359 /** The key of the message: Failed to delete the data. ({0}) */
360 public static final String ERRORS_crud_failed_to_delete_crud_table = "{errors.crud_failed_to_delete_crud_table}";
361
362 /** The key of the message: Could not find the data({0}). */
363 public static final String ERRORS_crud_could_not_find_crud_table = "{errors.crud_could_not_find_crud_table}";
364
365 /** The key of the message: {0} is required. */
366 public static final String ERRORS_property_required = "{errors.property_required}";
367
368 /** The key of the message: {0} should be numeric. */
369 public static final String ERRORS_property_type_integer = "{errors.property_type_integer}";
370
371 /** The key of the message: {0} should be numeric. */
372 public static final String ERRORS_property_type_long = "{errors.property_type_long}";
373
374 /** The key of the message: {0} should be numeric. */
375 public static final String ERRORS_property_type_float = "{errors.property_type_float}";
376
377 /** The key of the message: {0} should be numeric. */
378 public static final String ERRORS_property_type_double = "{errors.property_type_double}";
379
380 /** The key of the message: {0} should be date. */
381 public static final String ERRORS_property_type_date = "{errors.property_type_date}";
382
383 /** The key of the message: Updated parameters. */
384 public static final String SUCCESS_update_crawler_params = "{success.update_crawler_params}";
385
386 /** The key of the message: Started a process to delete the document from index. */
387 public static final String SUCCESS_delete_doc_from_index = "{success.delete_doc_from_index}";
388
389 /** The key of the message: Deleted session data. */
390 public static final String SUCCESS_crawling_info_delete_all = "{success.crawling_info_delete_all}";
391
392 /** The key of the message: Started a crawl process. */
393 public static final String SUCCESS_start_crawl_process = "{success.start_crawl_process}";
394
395 /** The key of the message: Uploaded {0}. */
396 public static final String SUCCESS_upload_design_file = "{success.upload_design_file}";
397
398 /** The key of the message: Updated {0}. */
399 public static final String SUCCESS_update_design_jsp_file = "{success.update_design_jsp_file}";
400
401 /** The key of the message: Created a crawling config ({0}). */
402 public static final String SUCCESS_create_crawling_config_at_wizard = "{success.create_crawling_config_at_wizard}";
403
404 /** The key of the message: Deleted failure urls. */
405 public static final String SUCCESS_failure_url_delete_all = "{success.failure_url_delete_all}";
406
407 /** The key of the message: Deleted {0} file. */
408 public static final String SUCCESS_delete_file = "{success.delete_file}";
409
410 /** The key of the message: Started job {0}. */
411 public static final String SUCCESS_job_started = "{success.job_started}";
412
413 /** The key of the message: Stopped job {0}. */
414 public static final String SUCCESS_job_stopped = "{success.job_stopped}";
415
416 /** The key of the message: Uploaded Synonym file. */
417 public static final String SUCCESS_upload_synonym_file = "{success.upload_synonym_file}";
418
419 /** The key of the message: Uploaded Kuromoji file. */
420 public static final String SUCCESS_upload_kuromoji_file = "{success.upload_kuromoji_file}";
421
422 /** The key of the message: Uploaded Additional Word file. */
423 public static final String SUCCESS_upload_elevate_word = "{success.upload_elevate_word}";
424
425 /** The key of the message: Uploaded Bad Word file. */
426 public static final String SUCCESS_upload_bad_word = "{success.upload_bad_word}";
427
428 /** The key of the message: Uploaded Mapping file. */
429 public static final String SUCCESS_upload_mapping_file = "{success.upload_mapping_file}";
430
431 /** The key of the message: Sent the test mail. */
432 public static final String SUCCESS_send_testmail = "{success.send_testmail}";
433
434 /** The key of the message: Deleted job logs. */
435 public static final String SUCCESS_job_log_delete_all = "{success.job_log_delete_all}";
436
437 /** The key of the message: Changed your password. */
438 public static final String SUCCESS_changed_password = "{success.changed_password}";
439
440 /** The key of the message: Started data update process. */
441 public static final String SUCCESS_started_data_update = "{success.started_data_update}";
442
443 /** The key of the message: Started reindexing. */
444 public static final String SUCCESS_reindex_started = "{success.reindex_started}";
445
446 /** The key of the message: Bulk process is started. */
447 public static final String SUCCESS_bulk_process_started = "{success.bulk_process_started}";
448
449 /** The key of the message: Created data. */
450 public static final String SUCCESS_crud_create_crud_table = "{success.crud_create_crud_table}";
451
452 /** The key of the message: Updated data. */
453 public static final String SUCCESS_crud_update_crud_table = "{success.crud_update_crud_table}";
454
455 /** The key of the message: Deleted data. */
456 public static final String SUCCESS_crud_delete_crud_table = "{success.crud_delete_crud_table}";
457
458 /**
459 * Add the created action message for the key 'errors.front_header' with parameters.
460 * <pre>
461 * message:
462 * comment: ------------
463 * </pre>
464 * @param property The property name for the message. (NotNull)
465 * @return this. (NotNull)
466 */
467 public FessMessages addErrorsFrontHeader(String property) {
468 assertPropertyNotNull(property);
469 add(property, new UserMessage(ERRORS_front_header));
470 return this;
471 }
472
473 /**
474 * Add the created action message for the key 'errors.front_footer' with parameters.
475 * <pre>
476 * message:
477 * </pre>
478 * @param property The property name for the message. (NotNull)
479 * @return this. (NotNull)
480 */
481 public FessMessages addErrorsFrontFooter(String property) {
482 assertPropertyNotNull(property);
483 add(property, new UserMessage(ERRORS_front_footer));
484 return this;
485 }
486
487 /**
488 * Add the created action message for the key 'errors.front_prefix' with parameters.
489 * <pre>
490 * message: <div class="alert alert-warning">
491 * </pre>
492 * @param property The property name for the message. (NotNull)
493 * @return this. (NotNull)
494 */
495 public FessMessages addErrorsFrontPrefix(String property) {
496 assertPropertyNotNull(property);
497 add(property, new UserMessage(ERRORS_front_prefix));
498 return this;
499 }
500
501 /**
502 * Add the created action message for the key 'errors.front_suffix' with parameters.
503 * <pre>
504 * message: </div>
505 * </pre>
506 * @param property The property name for the message. (NotNull)
507 * @return this. (NotNull)
508 */
509 public FessMessages addErrorsFrontSuffix(String property) {
510 assertPropertyNotNull(property);
511 add(property, new UserMessage(ERRORS_front_suffix));
512 return this;
513 }
514
515 /**
516 * Add the created action message for the key 'errors.header' with parameters.
517 * <pre>
518 * message: <ul class="has-error">
519 * </pre>
520 * @param property The property name for the message. (NotNull)
521 * @return this. (NotNull)
522 */
523 public FessMessages addErrorsHeader(String property) {
524 assertPropertyNotNull(property);
525 add(property, new UserMessage(ERRORS_HEADER));
526 return this;
527 }
528
529 /**
530 * Add the created action message for the key 'errors.footer' with parameters.
531 * <pre>
532 * message: </ul>
533 * </pre>
534 * @param property The property name for the message. (NotNull)
535 * @return this. (NotNull)
536 */
537 public FessMessages addErrorsFooter(String property) {
538 assertPropertyNotNull(property);
539 add(property, new UserMessage(ERRORS_FOOTER));
540 return this;
541 }
542
543 /**
544 * Add the created action message for the key 'errors.prefix' with parameters.
545 * <pre>
546 * message: <li><i class="fa fa-exclamation-circle"></i>
547 * </pre>
548 * @param property The property name for the message. (NotNull)
549 * @return this. (NotNull)
550 */
551 public FessMessages addErrorsPrefix(String property) {
552 assertPropertyNotNull(property);
553 add(property, new UserMessage(ERRORS_PREFIX));
554 return this;
555 }
556
557 /**
558 * Add the created action message for the key 'errors.suffix' with parameters.
559 * <pre>
560 * message: </li>
561 * </pre>
562 * @param property The property name for the message. (NotNull)
563 * @return this. (NotNull)
564 */
565 public FessMessages addErrorsSuffix(String property) {
566 assertPropertyNotNull(property);
567 add(property, new UserMessage(ERRORS_SUFFIX));
568 return this;
569 }
570
571 /**
572 * Add the created action message for the key 'constraints.AssertFalse.message' with parameters.
573 * <pre>
574 * message: {item} must be false.
575 * comment: ---------------
576 * </pre>
577 * @param property The property name for the message. (NotNull)
578 * @param item The parameter item for message. (NotNull)
579 * @return this. (NotNull)
580 */
581 public FessMessages addConstraintsAssertFalseMessage(String property, String item) {
582 assertPropertyNotNull(property);
583 add(property, new UserMessage(CONSTRAINTS_AssertFalse_MESSAGE, item));
584 return this;
585 }
586
587 /**
588 * Add the created action message for the key 'constraints.AssertTrue.message' with parameters.
589 * <pre>
590 * message: {item} must be true.
591 * </pre>
592 * @param property The property name for the message. (NotNull)
593 * @param item The parameter item for message. (NotNull)
594 * @return this. (NotNull)
595 */
596 public FessMessages addConstraintsAssertTrueMessage(String property, String item) {
597 assertPropertyNotNull(property);
598 add(property, new UserMessage(CONSTRAINTS_AssertTrue_MESSAGE, item));
599 return this;
600 }
601
602 /**
603 * Add the created action message for the key 'constraints.DecimalMax.message' with parameters.
604 * <pre>
605 * message: {item} must be less than ${inclusive == true ? 'or equal to ' : ''}{value}.
606 * </pre>
607 * @param property The property name for the message. (NotNull)
608 * @param item The parameter item for message. (NotNull)
609 * @param value The parameter value for message. (NotNull)
610 * @return this. (NotNull)
611 */
612 public FessMessages addConstraintsDecimalMaxMessage(String property, String item, String value) {
613 assertPropertyNotNull(property);
614 add(property, new UserMessage(CONSTRAINTS_DecimalMax_MESSAGE, item, value));
615 return this;
616 }
617
618 /**
619 * Add the created action message for the key 'constraints.DecimalMin.message' with parameters.
620 * <pre>
621 * message: {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}.
622 * </pre>
623 * @param property The property name for the message. (NotNull)
624 * @param item The parameter item for message. (NotNull)
625 * @param value The parameter value for message. (NotNull)
626 * @return this. (NotNull)
627 */
628 public FessMessages addConstraintsDecimalMinMessage(String property, String item, String value) {
629 assertPropertyNotNull(property);
630 add(property, new UserMessage(CONSTRAINTS_DecimalMin_MESSAGE, item, value));
631 return this;
632 }
633
634 /**
635 * Add the created action message for the key 'constraints.Digits.message' with parameters.
636 * <pre>
637 * message: {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
638 * </pre>
639 * @param property The property name for the message. (NotNull)
640 * @param item The parameter item for message. (NotNull)
641 * @param integer The parameter integer for message. (NotNull)
642 * @param fraction The parameter fraction for message. (NotNull)
643 * @return this. (NotNull)
644 */
645 public FessMessages addConstraintsDigitsMessage(String property, String item, String integer, String fraction) {
646 assertPropertyNotNull(property);
647 add(property, new UserMessage(CONSTRAINTS_Digits_MESSAGE, item, integer, fraction));
648 return this;
649 }
650
651 /**
652 * Add the created action message for the key 'constraints.Future.message' with parameters.
653 * <pre>
654 * message: {item} must be in the future.
655 * </pre>
656 * @param property The property name for the message. (NotNull)
657 * @param item The parameter item for message. (NotNull)
658 * @return this. (NotNull)
659 */
660 public FessMessages addConstraintsFutureMessage(String property, String item) {
661 assertPropertyNotNull(property);
662 add(property, new UserMessage(CONSTRAINTS_Future_MESSAGE, item));
663 return this;
664 }
665
666 /**
667 * Add the created action message for the key 'constraints.Max.message' with parameters.
668 * <pre>
669 * message: {item} must be less than or equal to {value}.
670 * </pre>
671 * @param property The property name for the message. (NotNull)
672 * @param item The parameter item for message. (NotNull)
673 * @param value The parameter value for message. (NotNull)
674 * @return this. (NotNull)
675 */
676 public FessMessages addConstraintsMaxMessage(String property, String item, String value) {
677 assertPropertyNotNull(property);
678 add(property, new UserMessage(CONSTRAINTS_Max_MESSAGE, item, value));
679 return this;
680 }
681
682 /**
683 * Add the created action message for the key 'constraints.Min.message' with parameters.
684 * <pre>
685 * message: {item} must be greater than or equal to {value}.
686 * </pre>
687 * @param property The property name for the message. (NotNull)
688 * @param item The parameter item for message. (NotNull)
689 * @param value The parameter value for message. (NotNull)
690 * @return this. (NotNull)
691 */
692 public FessMessages addConstraintsMinMessage(String property, String item, String value) {
693 assertPropertyNotNull(property);
694 add(property, new UserMessage(CONSTRAINTS_Min_MESSAGE, item, value));
695 return this;
696 }
697
698 /**
699 * Add the created action message for the key 'constraints.NotNull.message' with parameters.
700 * <pre>
701 * message: {item} may not be null.
702 * </pre>
703 * @param property The property name for the message. (NotNull)
704 * @param item The parameter item for message. (NotNull)
705 * @return this. (NotNull)
706 */
707 public FessMessages addConstraintsNotNullMessage(String property, String item) {
708 assertPropertyNotNull(property);
709 add(property, new UserMessage(CONSTRAINTS_NotNull_MESSAGE, item));
710 return this;
711 }
712
713 /**
714 * Add the created action message for the key 'constraints.Null.message' with parameters.
715 * <pre>
716 * message: {item} must be null.
717 * </pre>
718 * @param property The property name for the message. (NotNull)
719 * @param item The parameter item for message. (NotNull)
720 * @return this. (NotNull)
721 */
722 public FessMessages addConstraintsNullMessage(String property, String item) {
723 assertPropertyNotNull(property);
724 add(property, new UserMessage(CONSTRAINTS_Null_MESSAGE, item));
725 return this;
726 }
727
728 /**
729 * Add the created action message for the key 'constraints.Past.message' with parameters.
730 * <pre>
731 * message: {item} must be in the past.
732 * </pre>
733 * @param property The property name for the message. (NotNull)
734 * @param item The parameter item for message. (NotNull)
735 * @return this. (NotNull)
736 */
737 public FessMessages addConstraintsPastMessage(String property, String item) {
738 assertPropertyNotNull(property);
739 add(property, new UserMessage(CONSTRAINTS_Past_MESSAGE, item));
740 return this;
741 }
742
743 /**
744 * Add the created action message for the key 'constraints.Pattern.message' with parameters.
745 * <pre>
746 * message: {item} must match "{regexp}".
747 * </pre>
748 * @param property The property name for the message. (NotNull)
749 * @param item The parameter item for message. (NotNull)
750 * @param regexp The parameter regexp for message. (NotNull)
751 * @return this. (NotNull)
752 */
753 public FessMessages addConstraintsPatternMessage(String property, String item, String regexp) {
754 assertPropertyNotNull(property);
755 add(property, new UserMessage(CONSTRAINTS_Pattern_MESSAGE, item, regexp));
756 return this;
757 }
758
759 /**
760 * Add the created action message for the key 'constraints.Size.message' with parameters.
761 * <pre>
762 * message: Size of {item} must be between {min} and {max}.
763 * </pre>
764 * @param property The property name for the message. (NotNull)
765 * @param item The parameter item for message. (NotNull)
766 * @param min The parameter min for message. (NotNull)
767 * @param max The parameter max for message. (NotNull)
768 * @return this. (NotNull)
769 */
770 public FessMessages addConstraintsSizeMessage(String property, String item, String min, String max) {
771 assertPropertyNotNull(property);
772 add(property, new UserMessage(CONSTRAINTS_Size_MESSAGE, item, min, max));
773 return this;
774 }
775
776 /**
777 * Add the created action message for the key 'constraints.CreditCardNumber.message' with parameters.
778 * <pre>
779 * message: {item} is invalid credit card number.
780 * comment: -------------------
781 * </pre>
782 * @param property The property name for the message. (NotNull)
783 * @param item The parameter item for message. (NotNull)
784 * @return this. (NotNull)
785 */
786 public FessMessages addConstraintsCreditCardNumberMessage(String property, String item) {
787 assertPropertyNotNull(property);
788 add(property, new UserMessage(CONSTRAINTS_CreditCardNumber_MESSAGE, item));
789 return this;
790 }
791
792 /**
793 * Add the created action message for the key 'constraints.EAN.message' with parameters.
794 * <pre>
795 * message: {item} is invalid {type} barcode.
796 * </pre>
797 * @param property The property name for the message. (NotNull)
798 * @param item The parameter item for message. (NotNull)
799 * @param type The parameter type for message. (NotNull)
800 * @return this. (NotNull)
801 */
802 public FessMessages addConstraintsEanMessage(String property, String item, String type) {
803 assertPropertyNotNull(property);
804 add(property, new UserMessage(CONSTRAINTS_EAN_MESSAGE, item, type));
805 return this;
806 }
807
808 /**
809 * Add the created action message for the key 'constraints.Email.message' with parameters.
810 * <pre>
811 * message: {item} is not a well-formed email address.
812 * </pre>
813 * @param property The property name for the message. (NotNull)
814 * @param item The parameter item for message. (NotNull)
815 * @return this. (NotNull)
816 */
817 public FessMessages addConstraintsEmailMessage(String property, String item) {
818 assertPropertyNotNull(property);
819 add(property, new UserMessage(CONSTRAINTS_Email_MESSAGE, item));
820 return this;
821 }
822
823 /**
824 * Add the created action message for the key 'constraints.Length.message' with parameters.
825 * <pre>
826 * message: Length of {item} must be between {min} and {max}.
827 * </pre>
828 * @param property The property name for the message. (NotNull)
829 * @param item The parameter item for message. (NotNull)
830 * @param min The parameter min for message. (NotNull)
831 * @param max The parameter max for message. (NotNull)
832 * @return this. (NotNull)
833 */
834 public FessMessages addConstraintsLengthMessage(String property, String item, String min, String max) {
835 assertPropertyNotNull(property);
836 add(property, new UserMessage(CONSTRAINTS_Length_MESSAGE, item, min, max));
837 return this;
838 }
839
840 /**
841 * Add the created action message for the key 'constraints.LuhnCheck.message' with parameters.
842 * <pre>
843 * message: The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed.
844 * </pre>
845 * @param property The property name for the message. (NotNull)
846 * @param value The parameter value for message. (NotNull)
847 * @return this. (NotNull)
848 */
849 public FessMessages addConstraintsLuhnCheckMessage(String property, String value) {
850 assertPropertyNotNull(property);
851 add(property, new UserMessage(CONSTRAINTS_LuhnCheck_MESSAGE, value));
852 return this;
853 }
854
855 /**
856 * Add the created action message for the key 'constraints.Mod10Check.message' with parameters.
857 * <pre>
858 * message: The check digit for ${value} is invalid, Modulo 10 checksum failed.
859 * </pre>
860 * @param property The property name for the message. (NotNull)
861 * @param value The parameter value for message. (NotNull)
862 * @return this. (NotNull)
863 */
864 public FessMessages addConstraintsMod10CheckMessage(String property, String value) {
865 assertPropertyNotNull(property);
866 add(property, new UserMessage(CONSTRAINTS_Mod10Check_MESSAGE, value));
867 return this;
868 }
869
870 /**
871 * Add the created action message for the key 'constraints.Mod11Check.message' with parameters.
872 * <pre>
873 * message: The check digit for ${value} is invalid, Modulo 11 checksum failed.
874 * </pre>
875 * @param property The property name for the message. (NotNull)
876 * @param value The parameter value for message. (NotNull)
877 * @return this. (NotNull)
878 */
879 public FessMessages addConstraintsMod11CheckMessage(String property, String value) {
880 assertPropertyNotNull(property);
881 add(property, new UserMessage(CONSTRAINTS_Mod11Check_MESSAGE, value));
882 return this;
883 }
884
885 /**
886 * Add the created action message for the key 'constraints.ModCheck.message' with parameters.
887 * <pre>
888 * message: The check digit for ${value} is invalid, ${modType} checksum failed.
889 * </pre>
890 * @param property The property name for the message. (NotNull)
891 * @param value The parameter value for message. (NotNull)
892 * @param modType The parameter modType for message. (NotNull)
893 * @return this. (NotNull)
894 */
895 public FessMessages addConstraintsModCheckMessage(String property, String value, String modType) {
896 assertPropertyNotNull(property);
897 add(property, new UserMessage(CONSTRAINTS_ModCheck_MESSAGE, value, modType));
898 return this;
899 }
900
901 /**
902 * Add the created action message for the key 'constraints.NotBlank.message' with parameters.
903 * <pre>
904 * message: {item} may not be empty.
905 * </pre>
906 * @param property The property name for the message. (NotNull)
907 * @param item The parameter item for message. (NotNull)
908 * @return this. (NotNull)
909 */
910 public FessMessages addConstraintsNotBlankMessage(String property, String item) {
911 assertPropertyNotNull(property);
912 add(property, new UserMessage(CONSTRAINTS_NotBlank_MESSAGE, item));
913 return this;
914 }
915
916 /**
917 * Add the created action message for the key 'constraints.NotEmpty.message' with parameters.
918 * <pre>
919 * message: {item} may not be empty.
920 * </pre>
921 * @param property The property name for the message. (NotNull)
922 * @param item The parameter item for message. (NotNull)
923 * @return this. (NotNull)
924 */
925 public FessMessages addConstraintsNotEmptyMessage(String property, String item) {
926 assertPropertyNotNull(property);
927 add(property, new UserMessage(CONSTRAINTS_NotEmpty_MESSAGE, item));
928 return this;
929 }
930
931 /**
932 * Add the created action message for the key 'constraints.ParametersScriptAssert.message' with parameters.
933 * <pre>
934 * message: script expression "{script}" didn't evaluate to true.
935 * </pre>
936 * @param property The property name for the message. (NotNull)
937 * @param script The parameter script for message. (NotNull)
938 * @return this. (NotNull)
939 */
940 public FessMessages addConstraintsParametersScriptAssertMessage(String property, String script) {
941 assertPropertyNotNull(property);
942 add(property, new UserMessage(CONSTRAINTS_ParametersScriptAssert_MESSAGE, script));
943 return this;
944 }
945
946 /**
947 * Add the created action message for the key 'constraints.Range.message' with parameters.
948 * <pre>
949 * message: {item} must be between {min} and {max}.
950 * </pre>
951 * @param property The property name for the message. (NotNull)
952 * @param item The parameter item for message. (NotNull)
953 * @param min The parameter min for message. (NotNull)
954 * @param max The parameter max for message. (NotNull)
955 * @return this. (NotNull)
956 */
957 public FessMessages addConstraintsRangeMessage(String property, String item, String min, String max) {
958 assertPropertyNotNull(property);
959 add(property, new UserMessage(CONSTRAINTS_Range_MESSAGE, item, min, max));
960 return this;
961 }
962
963 /**
964 * Add the created action message for the key 'constraints.SafeHtml.message' with parameters.
965 * <pre>
966 * message: {item} may have unsafe html content.
967 * </pre>
968 * @param property The property name for the message. (NotNull)
969 * @param item The parameter item for message. (NotNull)
970 * @return this. (NotNull)
971 */
972 public FessMessages addConstraintsSafeHtmlMessage(String property, String item) {
973 assertPropertyNotNull(property);
974 add(property, new UserMessage(CONSTRAINTS_SafeHtml_MESSAGE, item));
975 return this;
976 }
977
978 /**
979 * Add the created action message for the key 'constraints.ScriptAssert.message' with parameters.
980 * <pre>
981 * message: script expression "{script}" didn't evaluate to true.
982 * </pre>
983 * @param property The property name for the message. (NotNull)
984 * @param script The parameter script for message. (NotNull)
985 * @return this. (NotNull)
986 */
987 public FessMessages addConstraintsScriptAssertMessage(String property, String script) {
988 assertPropertyNotNull(property);
989 add(property, new UserMessage(CONSTRAINTS_ScriptAssert_MESSAGE, script));
990 return this;
991 }
992
993 /**
994 * Add the created action message for the key 'constraints.URL.message' with parameters.
995 * <pre>
996 * message: {item} must be a valid URL.
997 * </pre>
998 * @param property The property name for the message. (NotNull)
999 * @param item The parameter item for message. (NotNull)
1000 * @return this. (NotNull)
1001 */
1002 public FessMessages addConstraintsUrlMessage(String property, String item) {
1003 assertPropertyNotNull(property);
1004 add(property, new UserMessage(CONSTRAINTS_URL_MESSAGE, item));
1005 return this;
1006 }
1007
1008 /**
1009 * Add the created action message for the key 'constraints.Required.message' with parameters.
1010 * <pre>
1011 * message: {item} is required.
1012 * </pre>
1013 * @param property The property name for the message. (NotNull)
1014 * @param item The parameter item for message. (NotNull)
1015 * @return this. (NotNull)
1016 */
1017 public FessMessages addConstraintsRequiredMessage(String property, String item) {
1018 assertPropertyNotNull(property);
1019 add(property, new UserMessage(CONSTRAINTS_Required_MESSAGE, item));
1020 return this;
1021 }
1022
1023 /**
1024 * Add the created action message for the key 'constraints.TypeInteger.message' with parameters.
1025 * <pre>
1026 * message: {item} should be numeric.
1027 * </pre>
1028 * @param property The property name for the message. (NotNull)
1029 * @param item The parameter item for message. (NotNull)
1030 * @return this. (NotNull)
1031 */
1032 public FessMessages addConstraintsTypeIntegerMessage(String property, String item) {
1033 assertPropertyNotNull(property);
1034 add(property, new UserMessage(CONSTRAINTS_TypeInteger_MESSAGE, item));
1035 return this;
1036 }
1037
1038 /**
1039 * Add the created action message for the key 'constraints.TypeLong.message' with parameters.
1040 * <pre>
1041 * message: {item} should be numeric.
1042 * </pre>
1043 * @param property The property name for the message. (NotNull)
1044 * @param item The parameter item for message. (NotNull)
1045 * @return this. (NotNull)
1046 */
1047 public FessMessages addConstraintsTypeLongMessage(String property, String item) {
1048 assertPropertyNotNull(property);
1049 add(property, new UserMessage(CONSTRAINTS_TypeLong_MESSAGE, item));
1050 return this;
1051 }
1052
1053 /**
1054 * Add the created action message for the key 'constraints.TypeFloat.message' with parameters.
1055 * <pre>
1056 * message: {item} should be numeric.
1057 * </pre>
1058 * @param property The property name for the message. (NotNull)
1059 * @param item The parameter item for message. (NotNull)
1060 * @return this. (NotNull)
1061 */
1062 public FessMessages addConstraintsTypeFloatMessage(String property, String item) {
1063 assertPropertyNotNull(property);
1064 add(property, new UserMessage(CONSTRAINTS_TypeFloat_MESSAGE, item));
1065 return this;
1066 }
1067
1068 /**
1069 * Add the created action message for the key 'constraints.TypeDouble.message' with parameters.
1070 * <pre>
1071 * message: {item} should be numeric.
1072 * </pre>
1073 * @param property The property name for the message. (NotNull)
1074 * @param item The parameter item for message. (NotNull)
1075 * @return this. (NotNull)
1076 */
1077 public FessMessages addConstraintsTypeDoubleMessage(String property, String item) {
1078 assertPropertyNotNull(property);
1079 add(property, new UserMessage(CONSTRAINTS_TypeDouble_MESSAGE, item));
1080 return this;
1081 }
1082
1083 /**
1084 * Add the created action message for the key 'constraints.TypeAny.message' with parameters.
1085 * <pre>
1086 * message: {item} cannot convert as {propertyType}.
1087 * </pre>
1088 * @param property The property name for the message. (NotNull)
1089 * @param item The parameter item for message. (NotNull)
1090 * @param propertyType The parameter propertyType for message. (NotNull)
1091 * @return this. (NotNull)
1092 */
1093 public FessMessages addConstraintsTypeAnyMessage(String property, String item, String propertyType) {
1094 assertPropertyNotNull(property);
1095 add(property, new UserMessage(CONSTRAINTS_TypeAny_MESSAGE, item, propertyType));
1096 return this;
1097 }
1098
1099 /**
1100 * Add the created action message for the key 'constraints.UriType.message' with parameters.
1101 * <pre>
1102 * message: {item} has wrong URI.
1103 * </pre>
1104 * @param property The property name for the message. (NotNull)
1105 * @param item The parameter item for message. (NotNull)
1106 * @return this. (NotNull)
1107 */
1108 public FessMessages addConstraintsUriTypeMessage(String property, String item) {
1109 assertPropertyNotNull(property);
1110 add(property, new UserMessage(CONSTRAINTS_UriType_MESSAGE, item));
1111 return this;
1112 }
1113
1114 /**
1115 * Add the created action message for the key 'constraints.CronExpression.message' with parameters.
1116 * <pre>
1117 * message: {item} is invalid cron expression.
1118 * </pre>
1119 * @param property The property name for the message. (NotNull)
1120 * @param item The parameter item for message. (NotNull)
1121 * @return this. (NotNull)
1122 */
1123 public FessMessages addConstraintsCronExpressionMessage(String property, String item) {
1124 assertPropertyNotNull(property);
1125 add(property, new UserMessage(CONSTRAINTS_CronExpression_MESSAGE, item));
1126 return this;
1127 }
1128
1129 /**
1130 * Add the created action message for the key 'errors.login.failure' with parameters.
1131 * <pre>
1132 * message: Login failed.
1133 * comment: - - - - - - - - - -/
1134 * </pre>
1135 * @param property The property name for the message. (NotNull)
1136 * @return this. (NotNull)
1137 */
1138 public FessMessages addErrorsLoginFailure(String property) {
1139 assertPropertyNotNull(property);
1140 add(property, new UserMessage(ERRORS_LOGIN_FAILURE));
1141 return this;
1142 }
1143
1144 /**
1145 * Add the created action message for the key 'errors.app.illegal.transition' with parameters.
1146 * <pre>
1147 * message: Please retry because of illegal transition.
1148 * </pre>
1149 * @param property The property name for the message. (NotNull)
1150 * @return this. (NotNull)
1151 */
1152 public FessMessages addErrorsAppIllegalTransition(String property) {
1153 assertPropertyNotNull(property);
1154 add(property, new UserMessage(ERRORS_APP_ILLEGAL_TRANSITION));
1155 return this;
1156 }
1157
1158 /**
1159 * Add the created action message for the key 'errors.app.db.already.deleted' with parameters.
1160 * <pre>
1161 * message: others might be updated, so retry.
1162 * </pre>
1163 * @param property The property name for the message. (NotNull)
1164 * @return this. (NotNull)
1165 */
1166 public FessMessages addErrorsAppDbAlreadyDeleted(String property) {
1167 assertPropertyNotNull(property);
1168 add(property, new UserMessage(ERRORS_APP_DB_ALREADY_DELETED));
1169 return this;
1170 }
1171
1172 /**
1173 * Add the created action message for the key 'errors.app.db.already.updated' with parameters.
1174 * <pre>
1175 * message: others might be updated, so retry.
1176 * </pre>
1177 * @param property The property name for the message. (NotNull)
1178 * @return this. (NotNull)
1179 */
1180 public FessMessages addErrorsAppDbAlreadyUpdated(String property) {
1181 assertPropertyNotNull(property);
1182 add(property, new UserMessage(ERRORS_APP_DB_ALREADY_UPDATED));
1183 return this;
1184 }
1185
1186 /**
1187 * Add the created action message for the key 'errors.app.db.already.exists' with parameters.
1188 * <pre>
1189 * message: already existing data, so retry.
1190 * </pre>
1191 * @param property The property name for the message. (NotNull)
1192 * @return this. (NotNull)
1193 */
1194 public FessMessages addErrorsAppDbAlreadyExists(String property) {
1195 assertPropertyNotNull(property);
1196 add(property, new UserMessage(ERRORS_APP_DB_ALREADY_EXISTS));
1197 return this;
1198 }
1199
1200 /**
1201 * Add the created action message for the key 'errors.app.double.submit.request' with parameters.
1202 * <pre>
1203 * message: Your request might have been processed before this request. Please check and retry it.
1204 * </pre>
1205 * @param property The property name for the message. (NotNull)
1206 * @return this. (NotNull)
1207 */
1208 public FessMessages addErrorsAppDoubleSubmitRequest(String property) {
1209 assertPropertyNotNull(property);
1210 add(property, new UserMessage(ERRORS_APP_DOUBLE_SUBMIT_REQUEST));
1211 return this;
1212 }
1213
1214 /**
1215 * Add the created action message for the key 'errors.login_error' with parameters.
1216 * <pre>
1217 * message: Username or Password is not correct.
1218 * </pre>
1219 * @param property The property name for the message. (NotNull)
1220 * @return this. (NotNull)
1221 */
1222 public FessMessages addErrorsLoginError(String property) {
1223 assertPropertyNotNull(property);
1224 add(property, new UserMessage(ERRORS_login_error));
1225 return this;
1226 }
1227
1228 /**
1229 * Add the created action message for the key 'errors.sso_login_error' with parameters.
1230 * <pre>
1231 * message: Failed to process SSO login.
1232 * </pre>
1233 * @param property The property name for the message. (NotNull)
1234 * @return this. (NotNull)
1235 */
1236 public FessMessages addErrorsSsoLoginError(String property) {
1237 assertPropertyNotNull(property);
1238 add(property, new UserMessage(ERRORS_sso_login_error));
1239 return this;
1240 }
1241
1242 /**
1243 * Add the created action message for the key 'errors.could_not_find_log_file' with parameters.
1244 * <pre>
1245 * message: Could not find {0}.
1246 * </pre>
1247 * @param property The property name for the message. (NotNull)
1248 * @param arg0 The parameter arg0 for message. (NotNull)
1249 * @return this. (NotNull)
1250 */
1251 public FessMessages addErrorsCouldNotFindLogFile(String property, String arg0) {
1252 assertPropertyNotNull(property);
1253 add(property, new UserMessage(ERRORS_could_not_find_log_file, arg0));
1254 return this;
1255 }
1256
1257 /**
1258 * Add the created action message for the key 'errors.failed_to_start_crawl_process' with parameters.
1259 * <pre>
1260 * message: Failed to start a crawl process.
1261 * </pre>
1262 * @param property The property name for the message. (NotNull)
1263 * @return this. (NotNull)
1264 */
1265 public FessMessages addErrorsFailedToStartCrawlProcess(String property) {
1266 assertPropertyNotNull(property);
1267 add(property, new UserMessage(ERRORS_failed_to_start_crawl_process));
1268 return this;
1269 }
1270
1271 /**
1272 * Add the created action message for the key 'errors.invalid_design_jsp_file_name' with parameters.
1273 * <pre>
1274 * message: Invalid JSP file.
1275 * </pre>
1276 * @param property The property name for the message. (NotNull)
1277 * @return this. (NotNull)
1278 */
1279 public FessMessages addErrorsInvalidDesignJspFileName(String property) {
1280 assertPropertyNotNull(property);
1281 add(property, new UserMessage(ERRORS_invalid_design_jsp_file_name));
1282 return this;
1283 }
1284
1285 /**
1286 * Add the created action message for the key 'errors.design_jsp_file_does_not_exist' with parameters.
1287 * <pre>
1288 * message: JSP file does not exist.
1289 * </pre>
1290 * @param property The property name for the message. (NotNull)
1291 * @return this. (NotNull)
1292 */
1293 public FessMessages addErrorsDesignJspFileDoesNotExist(String property) {
1294 assertPropertyNotNull(property);
1295 add(property, new UserMessage(ERRORS_design_jsp_file_does_not_exist));
1296 return this;
1297 }
1298
1299 /**
1300 * Add the created action message for the key 'errors.design_file_name_is_not_found' with parameters.
1301 * <pre>
1302 * message: The file name is not specified.
1303 * </pre>
1304 * @param property The property name for the message. (NotNull)
1305 * @return this. (NotNull)
1306 */
1307 public FessMessages addErrorsDesignFileNameIsNotFound(String property) {
1308 assertPropertyNotNull(property);
1309 add(property, new UserMessage(ERRORS_design_file_name_is_not_found));
1310 return this;
1311 }
1312
1313 /**
1314 * Add the created action message for the key 'errors.failed_to_write_design_image_file' with parameters.
1315 * <pre>
1316 * message: Failed to upload an image file.
1317 * </pre>
1318 * @param property The property name for the message. (NotNull)
1319 * @return this. (NotNull)
1320 */
1321 public FessMessages addErrorsFailedToWriteDesignImageFile(String property) {
1322 assertPropertyNotNull(property);
1323 add(property, new UserMessage(ERRORS_failed_to_write_design_image_file));
1324 return this;
1325 }
1326
1327 /**
1328 * Add the created action message for the key 'errors.failed_to_update_jsp_file' with parameters.
1329 * <pre>
1330 * message: Failed to update a jsp file.
1331 * </pre>
1332 * @param property The property name for the message. (NotNull)
1333 * @return this. (NotNull)
1334 */
1335 public FessMessages addErrorsFailedToUpdateJspFile(String property) {
1336 assertPropertyNotNull(property);
1337 add(property, new UserMessage(ERRORS_failed_to_update_jsp_file));
1338 return this;
1339 }
1340
1341 /**
1342 * Add the created action message for the key 'errors.design_file_name_is_invalid' with parameters.
1343 * <pre>
1344 * message: The file name is invalid.
1345 * </pre>
1346 * @param property The property name for the message. (NotNull)
1347 * @return this. (NotNull)
1348 */
1349 public FessMessages addErrorsDesignFileNameIsInvalid(String property) {
1350 assertPropertyNotNull(property);
1351 add(property, new UserMessage(ERRORS_design_file_name_is_invalid));
1352 return this;
1353 }
1354
1355 /**
1356 * Add the created action message for the key 'errors.design_file_is_unsupported_type' with parameters.
1357 * <pre>
1358 * message: The kind of file is unsupported.
1359 * </pre>
1360 * @param property The property name for the message. (NotNull)
1361 * @return this. (NotNull)
1362 */
1363 public FessMessages addErrorsDesignFileIsUnsupportedType(String property) {
1364 assertPropertyNotNull(property);
1365 add(property, new UserMessage(ERRORS_design_file_is_unsupported_type));
1366 return this;
1367 }
1368
1369 /**
1370 * Add the created action message for the key 'errors.failed_to_create_crawling_config_at_wizard' with parameters.
1371 * <pre>
1372 * message: Failed to create a crawling config.
1373 * </pre>
1374 * @param property The property name for the message. (NotNull)
1375 * @return this. (NotNull)
1376 */
1377 public FessMessages addErrorsFailedToCreateCrawlingConfigAtWizard(String property) {
1378 assertPropertyNotNull(property);
1379 add(property, new UserMessage(ERRORS_failed_to_create_crawling_config_at_wizard));
1380 return this;
1381 }
1382
1383 /**
1384 * Add the created action message for the key 'errors.design_editor_disabled' with parameters.
1385 * <pre>
1386 * message: This feature is disabled.
1387 * </pre>
1388 * @param property The property name for the message. (NotNull)
1389 * @return this. (NotNull)
1390 */
1391 public FessMessages addErrorsDesignEditorDisabled(String property) {
1392 assertPropertyNotNull(property);
1393 add(property, new UserMessage(ERRORS_design_editor_disabled));
1394 return this;
1395 }
1396
1397 /**
1398 * Add the created action message for the key 'errors.not_found_on_file_system' with parameters.
1399 * <pre>
1400 * message: Not Found: {0}
1401 * </pre>
1402 * @param property The property name for the message. (NotNull)
1403 * @param arg0 The parameter arg0 for message. (NotNull)
1404 * @return this. (NotNull)
1405 */
1406 public FessMessages addErrorsNotFoundOnFileSystem(String property, String arg0) {
1407 assertPropertyNotNull(property);
1408 add(property, new UserMessage(ERRORS_not_found_on_file_system, arg0));
1409 return this;
1410 }
1411
1412 /**
1413 * Add the created action message for the key 'errors.could_not_open_on_system' with parameters.
1414 * <pre>
1415 * message: Could not open {0}. <br/>Please check if the file is associated with an application.
1416 * </pre>
1417 * @param property The property name for the message. (NotNull)
1418 * @param arg0 The parameter arg0 for message. (NotNull)
1419 * @return this. (NotNull)
1420 */
1421 public FessMessages addErrorsCouldNotOpenOnSystem(String property, String arg0) {
1422 assertPropertyNotNull(property);
1423 add(property, new UserMessage(ERRORS_could_not_open_on_system, arg0));
1424 return this;
1425 }
1426
1427 /**
1428 * Add the created action message for the key 'errors.result_size_exceeded' with parameters.
1429 * <pre>
1430 * message: No more results could be displayed.
1431 * </pre>
1432 * @param property The property name for the message. (NotNull)
1433 * @return this. (NotNull)
1434 */
1435 public FessMessages addErrorsResultSizeExceeded(String property) {
1436 assertPropertyNotNull(property);
1437 add(property, new UserMessage(ERRORS_result_size_exceeded));
1438 return this;
1439 }
1440
1441 /**
1442 * Add the created action message for the key 'errors.target_file_does_not_exist' with parameters.
1443 * <pre>
1444 * message: {0} file does not exist.
1445 * </pre>
1446 * @param property The property name for the message. (NotNull)
1447 * @param arg0 The parameter arg0 for message. (NotNull)
1448 * @return this. (NotNull)
1449 */
1450 public FessMessages addErrorsTargetFileDoesNotExist(String property, String arg0) {
1451 assertPropertyNotNull(property);
1452 add(property, new UserMessage(ERRORS_target_file_does_not_exist, arg0));
1453 return this;
1454 }
1455
1456 /**
1457 * Add the created action message for the key 'errors.failed_to_delete_file' with parameters.
1458 * <pre>
1459 * message: Failed to delete {0} file.
1460 * </pre>
1461 * @param property The property name for the message. (NotNull)
1462 * @param arg0 The parameter arg0 for message. (NotNull)
1463 * @return this. (NotNull)
1464 */
1465 public FessMessages addErrorsFailedToDeleteFile(String property, String arg0) {
1466 assertPropertyNotNull(property);
1467 add(property, new UserMessage(ERRORS_failed_to_delete_file, arg0));
1468 return this;
1469 }
1470
1471 /**
1472 * Add the created action message for the key 'errors.docid_not_found' with parameters.
1473 * <pre>
1474 * message: Not found Doc ID:{0}
1475 * </pre>
1476 * @param property The property name for the message. (NotNull)
1477 * @param arg0 The parameter arg0 for message. (NotNull)
1478 * @return this. (NotNull)
1479 */
1480 public FessMessages addErrorsDocidNotFound(String property, String arg0) {
1481 assertPropertyNotNull(property);
1482 add(property, new UserMessage(ERRORS_docid_not_found, arg0));
1483 return this;
1484 }
1485
1486 /**
1487 * Add the created action message for the key 'errors.document_not_found' with parameters.
1488 * <pre>
1489 * message: Not found URL of Doc ID:{0}
1490 * </pre>
1491 * @param property The property name for the message. (NotNull)
1492 * @param arg0 The parameter arg0 for message. (NotNull)
1493 * @return this. (NotNull)
1494 */
1495 public FessMessages addErrorsDocumentNotFound(String property, String arg0) {
1496 assertPropertyNotNull(property);
1497 add(property, new UserMessage(ERRORS_document_not_found, arg0));
1498 return this;
1499 }
1500
1501 /**
1502 * Add the created action message for the key 'errors.not_load_from_server' with parameters.
1503 * <pre>
1504 * message: Could not load from this server: {0}
1505 * </pre>
1506 * @param property The property name for the message. (NotNull)
1507 * @param arg0 The parameter arg0 for message. (NotNull)
1508 * @return this. (NotNull)
1509 */
1510 public FessMessages addErrorsNotLoadFromServer(String property, String arg0) {
1511 assertPropertyNotNull(property);
1512 add(property, new UserMessage(ERRORS_not_load_from_server, arg0));
1513 return this;
1514 }
1515
1516 /**
1517 * Add the created action message for the key 'errors.failed_to_start_job' with parameters.
1518 * <pre>
1519 * message: Failed to start job {0}.
1520 * </pre>
1521 * @param property The property name for the message. (NotNull)
1522 * @param arg0 The parameter arg0 for message. (NotNull)
1523 * @return this. (NotNull)
1524 */
1525 public FessMessages addErrorsFailedToStartJob(String property, String arg0) {
1526 assertPropertyNotNull(property);
1527 add(property, new UserMessage(ERRORS_failed_to_start_job, arg0));
1528 return this;
1529 }
1530
1531 /**
1532 * Add the created action message for the key 'errors.failed_to_stop_job' with parameters.
1533 * <pre>
1534 * message: Failed to stop job {0}.
1535 * </pre>
1536 * @param property The property name for the message. (NotNull)
1537 * @param arg0 The parameter arg0 for message. (NotNull)
1538 * @return this. (NotNull)
1539 */
1540 public FessMessages addErrorsFailedToStopJob(String property, String arg0) {
1541 assertPropertyNotNull(property);
1542 add(property, new UserMessage(ERRORS_failed_to_stop_job, arg0));
1543 return this;
1544 }
1545
1546 /**
1547 * Add the created action message for the key 'errors.failed_to_download_synonym_file' with parameters.
1548 * <pre>
1549 * message: Failed to download the Synonym file.
1550 * </pre>
1551 * @param property The property name for the message. (NotNull)
1552 * @return this. (NotNull)
1553 */
1554 public FessMessages addErrorsFailedToDownloadSynonymFile(String property) {
1555 assertPropertyNotNull(property);
1556 add(property, new UserMessage(ERRORS_failed_to_download_synonym_file));
1557 return this;
1558 }
1559
1560 /**
1561 * Add the created action message for the key 'errors.failed_to_upload_synonym_file' with parameters.
1562 * <pre>
1563 * message: Failed to upload the Synonym file.
1564 * </pre>
1565 * @param property The property name for the message. (NotNull)
1566 * @return this. (NotNull)
1567 */
1568 public FessMessages addErrorsFailedToUploadSynonymFile(String property) {
1569 assertPropertyNotNull(property);
1570 add(property, new UserMessage(ERRORS_failed_to_upload_synonym_file));
1571 return this;
1572 }
1573
1574 /**
1575 * Add the created action message for the key 'errors.failed_to_download_kuromoji_file' with parameters.
1576 * <pre>
1577 * message: Failed to download the Kuromoji file.
1578 * </pre>
1579 * @param property The property name for the message. (NotNull)
1580 * @return this. (NotNull)
1581 */
1582 public FessMessages addErrorsFailedToDownloadKuromojiFile(String property) {
1583 assertPropertyNotNull(property);
1584 add(property, new UserMessage(ERRORS_failed_to_download_kuromoji_file));
1585 return this;
1586 }
1587
1588 /**
1589 * Add the created action message for the key 'errors.failed_to_upload_kuromoji_file' with parameters.
1590 * <pre>
1591 * message: Failed to upload the Kuromoji file.
1592 * </pre>
1593 * @param property The property name for the message. (NotNull)
1594 * @return this. (NotNull)
1595 */
1596 public FessMessages addErrorsFailedToUploadKuromojiFile(String property) {
1597 assertPropertyNotNull(property);
1598 add(property, new UserMessage(ERRORS_failed_to_upload_kuromoji_file));
1599 return this;
1600 }
1601
1602 /**
1603 * Add the created action message for the key 'errors.failed_to_download_protwords_file' with parameters.
1604 * <pre>
1605 * message: Failed to download the Protwords file.
1606 * </pre>
1607 * @param property The property name for the message. (NotNull)
1608 * @return this. (NotNull)
1609 */
1610 public FessMessages addErrorsFailedToDownloadProtwordsFile(String property) {
1611 assertPropertyNotNull(property);
1612 add(property, new UserMessage(ERRORS_failed_to_download_protwords_file));
1613 return this;
1614 }
1615
1616 /**
1617 * Add the created action message for the key 'errors.failed_to_upload_protwords_file' with parameters.
1618 * <pre>
1619 * message: Failed to upload the Protwords file.
1620 * </pre>
1621 * @param property The property name for the message. (NotNull)
1622 * @return this. (NotNull)
1623 */
1624 public FessMessages addErrorsFailedToUploadProtwordsFile(String property) {
1625 assertPropertyNotNull(property);
1626 add(property, new UserMessage(ERRORS_failed_to_upload_protwords_file));
1627 return this;
1628 }
1629
1630 /**
1631 * Add the created action message for the key 'errors.failed_to_download_elevate_file' with parameters.
1632 * <pre>
1633 * message: Failed to download the Elevate file.
1634 * </pre>
1635 * @param property The property name for the message. (NotNull)
1636 * @return this. (NotNull)
1637 */
1638 public FessMessages addErrorsFailedToDownloadElevateFile(String property) {
1639 assertPropertyNotNull(property);
1640 add(property, new UserMessage(ERRORS_failed_to_download_elevate_file));
1641 return this;
1642 }
1643
1644 /**
1645 * Add the created action message for the key 'errors.failed_to_upload_elevate_file' with parameters.
1646 * <pre>
1647 * message: Failed to upload the Elevate file.
1648 * </pre>
1649 * @param property The property name for the message. (NotNull)
1650 * @return this. (NotNull)
1651 */
1652 public FessMessages addErrorsFailedToUploadElevateFile(String property) {
1653 assertPropertyNotNull(property);
1654 add(property, new UserMessage(ERRORS_failed_to_upload_elevate_file));
1655 return this;
1656 }
1657
1658 /**
1659 * Add the created action message for the key 'errors.failed_to_download_badword_file' with parameters.
1660 * <pre>
1661 * message: Failed to download the Badword file.
1662 * </pre>
1663 * @param property The property name for the message. (NotNull)
1664 * @return this. (NotNull)
1665 */
1666 public FessMessages addErrorsFailedToDownloadBadwordFile(String property) {
1667 assertPropertyNotNull(property);
1668 add(property, new UserMessage(ERRORS_failed_to_download_badword_file));
1669 return this;
1670 }
1671
1672 /**
1673 * Add the created action message for the key 'errors.failed_to_upload_badword_file' with parameters.
1674 * <pre>
1675 * message: Failed to upload the Badword file.
1676 * </pre>
1677 * @param property The property name for the message. (NotNull)
1678 * @return this. (NotNull)
1679 */
1680 public FessMessages addErrorsFailedToUploadBadwordFile(String property) {
1681 assertPropertyNotNull(property);
1682 add(property, new UserMessage(ERRORS_failed_to_upload_badword_file));
1683 return this;
1684 }
1685
1686 /**
1687 * Add the created action message for the key 'errors.failed_to_download_mapping_file' with parameters.
1688 * <pre>
1689 * message: Failed to download the Mapping file.
1690 * </pre>
1691 * @param property The property name for the message. (NotNull)
1692 * @return this. (NotNull)
1693 */
1694 public FessMessages addErrorsFailedToDownloadMappingFile(String property) {
1695 assertPropertyNotNull(property);
1696 add(property, new UserMessage(ERRORS_failed_to_download_mapping_file));
1697 return this;
1698 }
1699
1700 /**
1701 * Add the created action message for the key 'errors.failed_to_upload_mapping_file' with parameters.
1702 * <pre>
1703 * message: Failed to upload the Mapping file.
1704 * </pre>
1705 * @param property The property name for the message. (NotNull)
1706 * @return this. (NotNull)
1707 */
1708 public FessMessages addErrorsFailedToUploadMappingFile(String property) {
1709 assertPropertyNotNull(property);
1710 add(property, new UserMessage(ERRORS_failed_to_upload_mapping_file));
1711 return this;
1712 }
1713
1714 /**
1715 * Add the created action message for the key 'errors.invalid_str_is_included' with parameters.
1716 * <pre>
1717 * message: "{1}" in "{0}" is invalid.
1718 * </pre>
1719 * @param property The property name for the message. (NotNull)
1720 * @param arg1 The parameter arg1 for message. (NotNull)
1721 * @param arg0 The parameter arg0 for message. (NotNull)
1722 * @return this. (NotNull)
1723 */
1724 public FessMessages addErrorsInvalidStrIsIncluded(String property, String arg1, String arg0) {
1725 assertPropertyNotNull(property);
1726 add(property, new UserMessage(ERRORS_invalid_str_is_included, arg1, arg0));
1727 return this;
1728 }
1729
1730 /**
1731 * Add the created action message for the key 'errors.blank_password' with parameters.
1732 * <pre>
1733 * message: Password is required.
1734 * </pre>
1735 * @param property The property name for the message. (NotNull)
1736 * @return this. (NotNull)
1737 */
1738 public FessMessages addErrorsBlankPassword(String property) {
1739 assertPropertyNotNull(property);
1740 add(property, new UserMessage(ERRORS_blank_password));
1741 return this;
1742 }
1743
1744 /**
1745 * Add the created action message for the key 'errors.invalid_confirm_password' with parameters.
1746 * <pre>
1747 * message: Confirm Password does not match.
1748 * </pre>
1749 * @param property The property name for the message. (NotNull)
1750 * @return this. (NotNull)
1751 */
1752 public FessMessages addErrorsInvalidConfirmPassword(String property) {
1753 assertPropertyNotNull(property);
1754 add(property, new UserMessage(ERRORS_invalid_confirm_password));
1755 return this;
1756 }
1757
1758 /**
1759 * Add the created action message for the key 'errors.cannot_delete_doc_because_of_running' with parameters.
1760 * <pre>
1761 * message: Crawler is running. The document cannot be deleted.
1762 * </pre>
1763 * @param property The property name for the message. (NotNull)
1764 * @return this. (NotNull)
1765 */
1766 public FessMessages addErrorsCannotDeleteDocBecauseOfRunning(String property) {
1767 assertPropertyNotNull(property);
1768 add(property, new UserMessage(ERRORS_cannot_delete_doc_because_of_running));
1769 return this;
1770 }
1771
1772 /**
1773 * Add the created action message for the key 'errors.failed_to_delete_doc_in_admin' with parameters.
1774 * <pre>
1775 * message: Failed to delete document.
1776 * </pre>
1777 * @param property The property name for the message. (NotNull)
1778 * @return this. (NotNull)
1779 */
1780 public FessMessages addErrorsFailedToDeleteDocInAdmin(String property) {
1781 assertPropertyNotNull(property);
1782 add(property, new UserMessage(ERRORS_failed_to_delete_doc_in_admin));
1783 return this;
1784 }
1785
1786 /**
1787 * Add the created action message for the key 'errors.failed_to_send_testmail' with parameters.
1788 * <pre>
1789 * message: Failed to send the test mail.
1790 * </pre>
1791 * @param property The property name for the message. (NotNull)
1792 * @return this. (NotNull)
1793 */
1794 public FessMessages addErrorsFailedToSendTestmail(String property) {
1795 assertPropertyNotNull(property);
1796 add(property, new UserMessage(ERRORS_failed_to_send_testmail));
1797 return this;
1798 }
1799
1800 /**
1801 * Add the created action message for the key 'errors.could_not_find_backup_index' with parameters.
1802 * <pre>
1803 * message: Could not find index for backup.
1804 * </pre>
1805 * @param property The property name for the message. (NotNull)
1806 * @return this. (NotNull)
1807 */
1808 public FessMessages addErrorsCouldNotFindBackupIndex(String property) {
1809 assertPropertyNotNull(property);
1810 add(property, new UserMessage(ERRORS_could_not_find_backup_index));
1811 return this;
1812 }
1813
1814 /**
1815 * Add the created action message for the key 'errors.no_user_for_changing_password' with parameters.
1816 * <pre>
1817 * message: The current password is incorrect.
1818 * </pre>
1819 * @param property The property name for the message. (NotNull)
1820 * @return this. (NotNull)
1821 */
1822 public FessMessages addErrorsNoUserForChangingPassword(String property) {
1823 assertPropertyNotNull(property);
1824 add(property, new UserMessage(ERRORS_no_user_for_changing_password));
1825 return this;
1826 }
1827
1828 /**
1829 * Add the created action message for the key 'errors.failed_to_change_password' with parameters.
1830 * <pre>
1831 * message: Failed to change your password.
1832 * </pre>
1833 * @param property The property name for the message. (NotNull)
1834 * @return this. (NotNull)
1835 */
1836 public FessMessages addErrorsFailedToChangePassword(String property) {
1837 assertPropertyNotNull(property);
1838 add(property, new UserMessage(ERRORS_failed_to_change_password));
1839 return this;
1840 }
1841
1842 /**
1843 * Add the created action message for the key 'errors.unknown_version_for_upgrade' with parameters.
1844 * <pre>
1845 * message: Unknown version information.
1846 * </pre>
1847 * @param property The property name for the message. (NotNull)
1848 * @return this. (NotNull)
1849 */
1850 public FessMessages addErrorsUnknownVersionForUpgrade(String property) {
1851 assertPropertyNotNull(property);
1852 add(property, new UserMessage(ERRORS_unknown_version_for_upgrade));
1853 return this;
1854 }
1855
1856 /**
1857 * Add the created action message for the key 'errors.failed_to_upgrade_from' with parameters.
1858 * <pre>
1859 * message: Failed to upgrade from {0}: {1}
1860 * </pre>
1861 * @param property The property name for the message. (NotNull)
1862 * @param arg0 The parameter arg0 for message. (NotNull)
1863 * @param arg1 The parameter arg1 for message. (NotNull)
1864 * @return this. (NotNull)
1865 */
1866 public FessMessages addErrorsFailedToUpgradeFrom(String property, String arg0, String arg1) {
1867 assertPropertyNotNull(property);
1868 add(property, new UserMessage(ERRORS_failed_to_upgrade_from, arg0, arg1));
1869 return this;
1870 }
1871
1872 /**
1873 * Add the created action message for the key 'errors.failed_to_reindex' with parameters.
1874 * <pre>
1875 * message: Failed to start reindexing from {0} to {1}
1876 * </pre>
1877 * @param property The property name for the message. (NotNull)
1878 * @param arg0 The parameter arg0 for message. (NotNull)
1879 * @param arg1 The parameter arg1 for message. (NotNull)
1880 * @return this. (NotNull)
1881 */
1882 public FessMessages addErrorsFailedToReindex(String property, String arg0, String arg1) {
1883 assertPropertyNotNull(property);
1884 add(property, new UserMessage(ERRORS_failed_to_reindex, arg0, arg1));
1885 return this;
1886 }
1887
1888 /**
1889 * Add the created action message for the key 'errors.failed_to_read_request_file' with parameters.
1890 * <pre>
1891 * message: Failed to read request file: {0}
1892 * </pre>
1893 * @param property The property name for the message. (NotNull)
1894 * @param arg0 The parameter arg0 for message. (NotNull)
1895 * @return this. (NotNull)
1896 */
1897 public FessMessages addErrorsFailedToReadRequestFile(String property, String arg0) {
1898 assertPropertyNotNull(property);
1899 add(property, new UserMessage(ERRORS_failed_to_read_request_file, arg0));
1900 return this;
1901 }
1902
1903 /**
1904 * Add the created action message for the key 'errors.invalid_header_for_request_file' with parameters.
1905 * <pre>
1906 * message: Invalid header: {0}
1907 * </pre>
1908 * @param property The property name for the message. (NotNull)
1909 * @param arg0 The parameter arg0 for message. (NotNull)
1910 * @return this. (NotNull)
1911 */
1912 public FessMessages addErrorsInvalidHeaderForRequestFile(String property, String arg0) {
1913 assertPropertyNotNull(property);
1914 add(property, new UserMessage(ERRORS_invalid_header_for_request_file, arg0));
1915 return this;
1916 }
1917
1918 /**
1919 * Add the created action message for the key 'errors.could_not_delete_logged_in_user' with parameters.
1920 * <pre>
1921 * message: Could not delete logged in user.
1922 * </pre>
1923 * @param property The property name for the message. (NotNull)
1924 * @return this. (NotNull)
1925 */
1926 public FessMessages addErrorsCouldNotDeleteLoggedInUser(String property) {
1927 assertPropertyNotNull(property);
1928 add(property, new UserMessage(ERRORS_could_not_delete_logged_in_user));
1929 return this;
1930 }
1931
1932 /**
1933 * Add the created action message for the key 'errors.unauthorized_request' with parameters.
1934 * <pre>
1935 * message: Unauthorized request.
1936 * </pre>
1937 * @param property The property name for the message. (NotNull)
1938 * @return this. (NotNull)
1939 */
1940 public FessMessages addErrorsUnauthorizedRequest(String property) {
1941 assertPropertyNotNull(property);
1942 add(property, new UserMessage(ERRORS_unauthorized_request));
1943 return this;
1944 }
1945
1946 /**
1947 * Add the created action message for the key 'errors.invalid_query_unknown' with parameters.
1948 * <pre>
1949 * message: The given query has unknown condition.
1950 * </pre>
1951 * @param property The property name for the message. (NotNull)
1952 * @return this. (NotNull)
1953 */
1954 public FessMessages addErrorsInvalidQueryUnknown(String property) {
1955 assertPropertyNotNull(property);
1956 add(property, new UserMessage(ERRORS_invalid_query_unknown));
1957 return this;
1958 }
1959
1960 /**
1961 * Add the created action message for the key 'errors.invalid_query_parse_error' with parameters.
1962 * <pre>
1963 * message: The given query is invalid.
1964 * </pre>
1965 * @param property The property name for the message. (NotNull)
1966 * @return this. (NotNull)
1967 */
1968 public FessMessages addErrorsInvalidQueryParseError(String property) {
1969 assertPropertyNotNull(property);
1970 add(property, new UserMessage(ERRORS_invalid_query_parse_error));
1971 return this;
1972 }
1973
1974 /**
1975 * Add the created action message for the key 'errors.invalid_query_sort_value' with parameters.
1976 * <pre>
1977 * message: The given sort ({0}) is invalid.
1978 * </pre>
1979 * @param property The property name for the message. (NotNull)
1980 * @param arg0 The parameter arg0 for message. (NotNull)
1981 * @return this. (NotNull)
1982 */
1983 public FessMessages addErrorsInvalidQuerySortValue(String property, String arg0) {
1984 assertPropertyNotNull(property);
1985 add(property, new UserMessage(ERRORS_invalid_query_sort_value, arg0));
1986 return this;
1987 }
1988
1989 /**
1990 * Add the created action message for the key 'errors.invalid_query_unsupported_sort_field' with parameters.
1991 * <pre>
1992 * message: The given sort ({0}) is not supported.
1993 * </pre>
1994 * @param property The property name for the message. (NotNull)
1995 * @param arg0 The parameter arg0 for message. (NotNull)
1996 * @return this. (NotNull)
1997 */
1998 public FessMessages addErrorsInvalidQueryUnsupportedSortField(String property, String arg0) {
1999 assertPropertyNotNull(property);
2000 add(property, new UserMessage(ERRORS_invalid_query_unsupported_sort_field, arg0));
2001 return this;
2002 }
2003
2004 /**
2005 * Add the created action message for the key 'errors.invalid_query_unsupported_sort_order' with parameters.
2006 * <pre>
2007 * message: The given sort order ({0}) is not supported.
2008 * </pre>
2009 * @param property The property name for the message. (NotNull)
2010 * @param arg0 The parameter arg0 for message. (NotNull)
2011 * @return this. (NotNull)
2012 */
2013 public FessMessages addErrorsInvalidQueryUnsupportedSortOrder(String property, String arg0) {
2014 assertPropertyNotNull(property);
2015 add(property, new UserMessage(ERRORS_invalid_query_unsupported_sort_order, arg0));
2016 return this;
2017 }
2018
2019 /**
2020 * Add the created action message for the key 'errors.crud_invalid_mode' with parameters.
2021 * <pre>
2022 * message: Invalid mode(expected value is {0}, but it's {1}).
2023 * </pre>
2024 * @param property The property name for the message. (NotNull)
2025 * @param arg0 The parameter arg0 for message. (NotNull)
2026 * @param arg1 The parameter arg1 for message. (NotNull)
2027 * @return this. (NotNull)
2028 */
2029 public FessMessages addErrorsCrudInvalidMode(String property, String arg0, String arg1) {
2030 assertPropertyNotNull(property);
2031 add(property, new UserMessage(ERRORS_crud_invalid_mode, arg0, arg1));
2032 return this;
2033 }
2034
2035 /**
2036 * Add the created action message for the key 'errors.crud_failed_to_create_instance' with parameters.
2037 * <pre>
2038 * message: Failed to create a new data.
2039 * </pre>
2040 * @param property The property name for the message. (NotNull)
2041 * @return this. (NotNull)
2042 */
2043 public FessMessages addErrorsCrudFailedToCreateInstance(String property) {
2044 assertPropertyNotNull(property);
2045 add(property, new UserMessage(ERRORS_crud_failed_to_create_instance));
2046 return this;
2047 }
2048
2049 /**
2050 * Add the created action message for the key 'errors.crud_failed_to_create_crud_table' with parameters.
2051 * <pre>
2052 * message: Failed to create a new data. ({0})
2053 * </pre>
2054 * @param property The property name for the message. (NotNull)
2055 * @param arg0 The parameter arg0 for message. (NotNull)
2056 * @return this. (NotNull)
2057 */
2058 public FessMessages addErrorsCrudFailedToCreateCrudTable(String property, String arg0) {
2059 assertPropertyNotNull(property);
2060 add(property, new UserMessage(ERRORS_crud_failed_to_create_crud_table, arg0));
2061 return this;
2062 }
2063
2064 /**
2065 * Add the created action message for the key 'errors.crud_failed_to_update_crud_table' with parameters.
2066 * <pre>
2067 * message: Failed to update the data. ({0})
2068 * </pre>
2069 * @param property The property name for the message. (NotNull)
2070 * @param arg0 The parameter arg0 for message. (NotNull)
2071 * @return this. (NotNull)
2072 */
2073 public FessMessages addErrorsCrudFailedToUpdateCrudTable(String property, String arg0) {
2074 assertPropertyNotNull(property);
2075 add(property, new UserMessage(ERRORS_crud_failed_to_update_crud_table, arg0));
2076 return this;
2077 }
2078
2079 /**
2080 * Add the created action message for the key 'errors.crud_failed_to_delete_crud_table' with parameters.
2081 * <pre>
2082 * message: Failed to delete the data. ({0})
2083 * </pre>
2084 * @param property The property name for the message. (NotNull)
2085 * @param arg0 The parameter arg0 for message. (NotNull)
2086 * @return this. (NotNull)
2087 */
2088 public FessMessages addErrorsCrudFailedToDeleteCrudTable(String property, String arg0) {
2089 assertPropertyNotNull(property);
2090 add(property, new UserMessage(ERRORS_crud_failed_to_delete_crud_table, arg0));
2091 return this;
2092 }
2093
2094 /**
2095 * Add the created action message for the key 'errors.crud_could_not_find_crud_table' with parameters.
2096 * <pre>
2097 * message: Could not find the data({0}).
2098 * </pre>
2099 * @param property The property name for the message. (NotNull)
2100 * @param arg0 The parameter arg0 for message. (NotNull)
2101 * @return this. (NotNull)
2102 */
2103 public FessMessages addErrorsCrudCouldNotFindCrudTable(String property, String arg0) {
2104 assertPropertyNotNull(property);
2105 add(property, new UserMessage(ERRORS_crud_could_not_find_crud_table, arg0));
2106 return this;
2107 }
2108
2109 /**
2110 * Add the created action message for the key 'errors.property_required' with parameters.
2111 * <pre>
2112 * message: {0} is required.
2113 * </pre>
2114 * @param property The property name for the message. (NotNull)
2115 * @param arg0 The parameter arg0 for message. (NotNull)
2116 * @return this. (NotNull)
2117 */
2118 public FessMessages addErrorsPropertyRequired(String property, String arg0) {
2119 assertPropertyNotNull(property);
2120 add(property, new UserMessage(ERRORS_property_required, arg0));
2121 return this;
2122 }
2123
2124 /**
2125 * Add the created action message for the key 'errors.property_type_integer' with parameters.
2126 * <pre>
2127 * message: {0} should be numeric.
2128 * </pre>
2129 * @param property The property name for the message. (NotNull)
2130 * @param arg0 The parameter arg0 for message. (NotNull)
2131 * @return this. (NotNull)
2132 */
2133 public FessMessages addErrorsPropertyTypeInteger(String property, String arg0) {
2134 assertPropertyNotNull(property);
2135 add(property, new UserMessage(ERRORS_property_type_integer, arg0));
2136 return this;
2137 }
2138
2139 /**
2140 * Add the created action message for the key 'errors.property_type_long' with parameters.
2141 * <pre>
2142 * message: {0} should be numeric.
2143 * </pre>
2144 * @param property The property name for the message. (NotNull)
2145 * @param arg0 The parameter arg0 for message. (NotNull)
2146 * @return this. (NotNull)
2147 */
2148 public FessMessages addErrorsPropertyTypeLong(String property, String arg0) {
2149 assertPropertyNotNull(property);
2150 add(property, new UserMessage(ERRORS_property_type_long, arg0));
2151 return this;
2152 }
2153
2154 /**
2155 * Add the created action message for the key 'errors.property_type_float' with parameters.
2156 * <pre>
2157 * message: {0} should be numeric.
2158 * </pre>
2159 * @param property The property name for the message. (NotNull)
2160 * @param arg0 The parameter arg0 for message. (NotNull)
2161 * @return this. (NotNull)
2162 */
2163 public FessMessages addErrorsPropertyTypeFloat(String property, String arg0) {
2164 assertPropertyNotNull(property);
2165 add(property, new UserMessage(ERRORS_property_type_float, arg0));
2166 return this;
2167 }
2168
2169 /**
2170 * Add the created action message for the key 'errors.property_type_double' with parameters.
2171 * <pre>
2172 * message: {0} should be numeric.
2173 * </pre>
2174 * @param property The property name for the message. (NotNull)
2175 * @param arg0 The parameter arg0 for message. (NotNull)
2176 * @return this. (NotNull)
2177 */
2178 public FessMessages addErrorsPropertyTypeDouble(String property, String arg0) {
2179 assertPropertyNotNull(property);
2180 add(property, new UserMessage(ERRORS_property_type_double, arg0));
2181 return this;
2182 }
2183
2184 /**
2185 * Add the created action message for the key 'errors.property_type_date' with parameters.
2186 * <pre>
2187 * message: {0} should be date.
2188 * </pre>
2189 * @param property The property name for the message. (NotNull)
2190 * @param arg0 The parameter arg0 for message. (NotNull)
2191 * @return this. (NotNull)
2192 */
2193 public FessMessages addErrorsPropertyTypeDate(String property, String arg0) {
2194 assertPropertyNotNull(property);
2195 add(property, new UserMessage(ERRORS_property_type_date, arg0));
2196 return this;
2197 }
2198
2199 /**
2200 * Add the created action message for the key 'success.update_crawler_params' with parameters.
2201 * <pre>
2202 * message: Updated parameters.
2203 * </pre>
2204 * @param property The property name for the message. (NotNull)
2205 * @return this. (NotNull)
2206 */
2207 public FessMessages addSuccessUpdateCrawlerParams(String property) {
2208 assertPropertyNotNull(property);
2209 add(property, new UserMessage(SUCCESS_update_crawler_params));
2210 return this;
2211 }
2212
2213 /**
2214 * Add the created action message for the key 'success.delete_doc_from_index' with parameters.
2215 * <pre>
2216 * message: Started a process to delete the document from index.
2217 * </pre>
2218 * @param property The property name for the message. (NotNull)
2219 * @return this. (NotNull)
2220 */
2221 public FessMessages addSuccessDeleteDocFromIndex(String property) {
2222 assertPropertyNotNull(property);
2223 add(property, new UserMessage(SUCCESS_delete_doc_from_index));
2224 return this;
2225 }
2226
2227 /**
2228 * Add the created action message for the key 'success.crawling_info_delete_all' with parameters.
2229 * <pre>
2230 * message: Deleted session data.
2231 * </pre>
2232 * @param property The property name for the message. (NotNull)
2233 * @return this. (NotNull)
2234 */
2235 public FessMessages addSuccessCrawlingInfoDeleteAll(String property) {
2236 assertPropertyNotNull(property);
2237 add(property, new UserMessage(SUCCESS_crawling_info_delete_all));
2238 return this;
2239 }
2240
2241 /**
2242 * Add the created action message for the key 'success.start_crawl_process' with parameters.
2243 * <pre>
2244 * message: Started a crawl process.
2245 * </pre>
2246 * @param property The property name for the message. (NotNull)
2247 * @return this. (NotNull)
2248 */
2249 public FessMessages addSuccessStartCrawlProcess(String property) {
2250 assertPropertyNotNull(property);
2251 add(property, new UserMessage(SUCCESS_start_crawl_process));
2252 return this;
2253 }
2254
2255 /**
2256 * Add the created action message for the key 'success.upload_design_file' with parameters.
2257 * <pre>
2258 * message: Uploaded {0}.
2259 * </pre>
2260 * @param property The property name for the message. (NotNull)
2261 * @param arg0 The parameter arg0 for message. (NotNull)
2262 * @return this. (NotNull)
2263 */
2264 public FessMessages addSuccessUploadDesignFile(String property, String arg0) {
2265 assertPropertyNotNull(property);
2266 add(property, new UserMessage(SUCCESS_upload_design_file, arg0));
2267 return this;
2268 }
2269
2270 /**
2271 * Add the created action message for the key 'success.update_design_jsp_file' with parameters.
2272 * <pre>
2273 * message: Updated {0}.
2274 * </pre>
2275 * @param property The property name for the message. (NotNull)
2276 * @param arg0 The parameter arg0 for message. (NotNull)
2277 * @return this. (NotNull)
2278 */
2279 public FessMessages addSuccessUpdateDesignJspFile(String property, String arg0) {
2280 assertPropertyNotNull(property);
2281 add(property, new UserMessage(SUCCESS_update_design_jsp_file, arg0));
2282 return this;
2283 }
2284
2285 /**
2286 * Add the created action message for the key 'success.create_crawling_config_at_wizard' with parameters.
2287 * <pre>
2288 * message: Created a crawling config ({0}).
2289 * </pre>
2290 * @param property The property name for the message. (NotNull)
2291 * @param arg0 The parameter arg0 for message. (NotNull)
2292 * @return this. (NotNull)
2293 */
2294 public FessMessages addSuccessCreateCrawlingConfigAtWizard(String property, String arg0) {
2295 assertPropertyNotNull(property);
2296 add(property, new UserMessage(SUCCESS_create_crawling_config_at_wizard, arg0));
2297 return this;
2298 }
2299
2300 /**
2301 * Add the created action message for the key 'success.failure_url_delete_all' with parameters.
2302 * <pre>
2303 * message: Deleted failure urls.
2304 * </pre>
2305 * @param property The property name for the message. (NotNull)
2306 * @return this. (NotNull)
2307 */
2308 public FessMessages addSuccessFailureUrlDeleteAll(String property) {
2309 assertPropertyNotNull(property);
2310 add(property, new UserMessage(SUCCESS_failure_url_delete_all));
2311 return this;
2312 }
2313
2314 /**
2315 * Add the created action message for the key 'success.delete_file' with parameters.
2316 * <pre>
2317 * message: Deleted {0} file.
2318 * </pre>
2319 * @param property The property name for the message. (NotNull)
2320 * @param arg0 The parameter arg0 for message. (NotNull)
2321 * @return this. (NotNull)
2322 */
2323 public FessMessages addSuccessDeleteFile(String property, String arg0) {
2324 assertPropertyNotNull(property);
2325 add(property, new UserMessage(SUCCESS_delete_file, arg0));
2326 return this;
2327 }
2328
2329 /**
2330 * Add the created action message for the key 'success.job_started' with parameters.
2331 * <pre>
2332 * message: Started job {0}.
2333 * </pre>
2334 * @param property The property name for the message. (NotNull)
2335 * @param arg0 The parameter arg0 for message. (NotNull)
2336 * @return this. (NotNull)
2337 */
2338 public FessMessages addSuccessJobStarted(String property, String arg0) {
2339 assertPropertyNotNull(property);
2340 add(property, new UserMessage(SUCCESS_job_started, arg0));
2341 return this;
2342 }
2343
2344 /**
2345 * Add the created action message for the key 'success.job_stopped' with parameters.
2346 * <pre>
2347 * message: Stopped job {0}.
2348 * </pre>
2349 * @param property The property name for the message. (NotNull)
2350 * @param arg0 The parameter arg0 for message. (NotNull)
2351 * @return this. (NotNull)
2352 */
2353 public FessMessages addSuccessJobStopped(String property, String arg0) {
2354 assertPropertyNotNull(property);
2355 add(property, new UserMessage(SUCCESS_job_stopped, arg0));
2356 return this;
2357 }
2358
2359 /**
2360 * Add the created action message for the key 'success.upload_synonym_file' with parameters.
2361 * <pre>
2362 * message: Uploaded Synonym file.
2363 * </pre>
2364 * @param property The property name for the message. (NotNull)
2365 * @return this. (NotNull)
2366 */
2367 public FessMessages addSuccessUploadSynonymFile(String property) {
2368 assertPropertyNotNull(property);
2369 add(property, new UserMessage(SUCCESS_upload_synonym_file));
2370 return this;
2371 }
2372
2373 /**
2374 * Add the created action message for the key 'success.upload_kuromoji_file' with parameters.
2375 * <pre>
2376 * message: Uploaded Kuromoji file.
2377 * </pre>
2378 * @param property The property name for the message. (NotNull)
2379 * @return this. (NotNull)
2380 */
2381 public FessMessages addSuccessUploadKuromojiFile(String property) {
2382 assertPropertyNotNull(property);
2383 add(property, new UserMessage(SUCCESS_upload_kuromoji_file));
2384 return this;
2385 }
2386
2387 /**
2388 * Add the created action message for the key 'success.upload_elevate_word' with parameters.
2389 * <pre>
2390 * message: Uploaded Additional Word file.
2391 * </pre>
2392 * @param property The property name for the message. (NotNull)
2393 * @return this. (NotNull)
2394 */
2395 public FessMessages addSuccessUploadElevateWord(String property) {
2396 assertPropertyNotNull(property);
2397 add(property, new UserMessage(SUCCESS_upload_elevate_word));
2398 return this;
2399 }
2400
2401 /**
2402 * Add the created action message for the key 'success.upload_bad_word' with parameters.
2403 * <pre>
2404 * message: Uploaded Bad Word file.
2405 * </pre>
2406 * @param property The property name for the message. (NotNull)
2407 * @return this. (NotNull)
2408 */
2409 public FessMessages addSuccessUploadBadWord(String property) {
2410 assertPropertyNotNull(property);
2411 add(property, new UserMessage(SUCCESS_upload_bad_word));
2412 return this;
2413 }
2414
2415 /**
2416 * Add the created action message for the key 'success.upload_mapping_file' with parameters.
2417 * <pre>
2418 * message: Uploaded Mapping file.
2419 * </pre>
2420 * @param property The property name for the message. (NotNull)
2421 * @return this. (NotNull)
2422 */
2423 public FessMessages addSuccessUploadMappingFile(String property) {
2424 assertPropertyNotNull(property);
2425 add(property, new UserMessage(SUCCESS_upload_mapping_file));
2426 return this;
2427 }
2428
2429 /**
2430 * Add the created action message for the key 'success.send_testmail' with parameters.
2431 * <pre>
2432 * message: Sent the test mail.
2433 * </pre>
2434 * @param property The property name for the message. (NotNull)
2435 * @return this. (NotNull)
2436 */
2437 public FessMessages addSuccessSendTestmail(String property) {
2438 assertPropertyNotNull(property);
2439 add(property, new UserMessage(SUCCESS_send_testmail));
2440 return this;
2441 }
2442
2443 /**
2444 * Add the created action message for the key 'success.job_log_delete_all' with parameters.
2445 * <pre>
2446 * message: Deleted job logs.
2447 * </pre>
2448 * @param property The property name for the message. (NotNull)
2449 * @return this. (NotNull)
2450 */
2451 public FessMessages addSuccessJobLogDeleteAll(String property) {
2452 assertPropertyNotNull(property);
2453 add(property, new UserMessage(SUCCESS_job_log_delete_all));
2454 return this;
2455 }
2456
2457 /**
2458 * Add the created action message for the key 'success.changed_password' with parameters.
2459 * <pre>
2460 * message: Changed your password.
2461 * </pre>
2462 * @param property The property name for the message. (NotNull)
2463 * @return this. (NotNull)
2464 */
2465 public FessMessages addSuccessChangedPassword(String property) {
2466 assertPropertyNotNull(property);
2467 add(property, new UserMessage(SUCCESS_changed_password));
2468 return this;
2469 }
2470
2471 /**
2472 * Add the created action message for the key 'success.started_data_update' with parameters.
2473 * <pre>
2474 * message: Started data update process.
2475 * </pre>
2476 * @param property The property name for the message. (NotNull)
2477 * @return this. (NotNull)
2478 */
2479 public FessMessages addSuccessStartedDataUpdate(String property) {
2480 assertPropertyNotNull(property);
2481 add(property, new UserMessage(SUCCESS_started_data_update));
2482 return this;
2483 }
2484
2485 /**
2486 * Add the created action message for the key 'success.reindex_started' with parameters.
2487 * <pre>
2488 * message: Started reindexing.
2489 * </pre>
2490 * @param property The property name for the message. (NotNull)
2491 * @return this. (NotNull)
2492 */
2493 public FessMessages addSuccessReindexStarted(String property) {
2494 assertPropertyNotNull(property);
2495 add(property, new UserMessage(SUCCESS_reindex_started));
2496 return this;
2497 }
2498
2499 /**
2500 * Add the created action message for the key 'success.bulk_process_started' with parameters.
2501 * <pre>
2502 * message: Bulk process is started.
2503 * </pre>
2504 * @param property The property name for the message. (NotNull)
2505 * @return this. (NotNull)
2506 */
2507 public FessMessages addSuccessBulkProcessStarted(String property) {
2508 assertPropertyNotNull(property);
2509 add(property, new UserMessage(SUCCESS_bulk_process_started));
2510 return this;
2511 }
2512
2513 /**
2514 * Add the created action message for the key 'success.crud_create_crud_table' with parameters.
2515 * <pre>
2516 * message: Created data.
2517 * </pre>
2518 * @param property The property name for the message. (NotNull)
2519 * @return this. (NotNull)
2520 */
2521 public FessMessages addSuccessCrudCreateCrudTable(String property) {
2522 assertPropertyNotNull(property);
2523 add(property, new UserMessage(SUCCESS_crud_create_crud_table));
2524 return this;
2525 }
2526
2527 /**
2528 * Add the created action message for the key 'success.crud_update_crud_table' with parameters.
2529 * <pre>
2530 * message: Updated data.
2531 * </pre>
2532 * @param property The property name for the message. (NotNull)
2533 * @return this. (NotNull)
2534 */
2535 public FessMessages addSuccessCrudUpdateCrudTable(String property) {
2536 assertPropertyNotNull(property);
2537 add(property, new UserMessage(SUCCESS_crud_update_crud_table));
2538 return this;
2539 }
2540
2541 /**
2542 * Add the created action message for the key 'success.crud_delete_crud_table' with parameters.
2543 * <pre>
2544 * message: Deleted data.
2545 * </pre>
2546 * @param property The property name for the message. (NotNull)
2547 * @return this. (NotNull)
2548 */
2549 public FessMessages addSuccessCrudDeleteCrudTable(String property) {
2550 assertPropertyNotNull(property);
2551 add(property, new UserMessage(SUCCESS_crud_delete_crud_table));
2552 return this;
2553 }
2554 }