View Javadoc
1   /*
2    * Copyright 2012-2025 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 {value}. */
60      public static final String CONSTRAINTS_DecimalMax_MESSAGE = "{constraints.DecimalMax.message}";
61  
62      /** The key of the message: {item} must be greater than {value}. */
63      public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}";
64  
65      /** The key of the message: {item} must be a number. (expected: <number>.<number>) */
66      public static final String CONSTRAINTS_Digits_MESSAGE = "{constraints.Digits.message}";
67  
68      /** The key of the message: {item} must be a future value. */
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} is required. */
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 a past value. */
84      public static final String CONSTRAINTS_Past_MESSAGE = "{constraints.Past.message}";
85  
86      /** The key of the message: {item} does not match "{regexp}". */
87      public static final String CONSTRAINTS_Pattern_MESSAGE = "{constraints.Pattern.message}";
88  
89      /** The key of the message: The 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 an invalid credit card number. */
93      public static final String CONSTRAINTS_CreditCardNumber_MESSAGE = "{constraints.CreditCardNumber.message}";
94  
95      /** The key of the message: {item} is an 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 valid email address. */
99      public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
100 
101     /** The key of the message: The 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 Luhn Modulo 11 checksum of {value} is incorrect. */
105     public static final String CONSTRAINTS_LuhnCheck_MESSAGE = "{constraints.LuhnCheck.message}";
106 
107     /** The key of the message: The Modulo 10 checksum of {value} is incorrect. */
108     public static final String CONSTRAINTS_Mod10Check_MESSAGE = "{constraints.Mod10Check.message}";
109 
110     /** The key of the message: The Modulo 11 checksum of {value} is incorrect. */
111     public static final String CONSTRAINTS_Mod11Check_MESSAGE = "{constraints.Mod11Check.message}";
112 
113     /** The key of the message: The {modType} checksum of {value} is incorrect. */
114     public static final String CONSTRAINTS_ModCheck_MESSAGE = "{constraints.ModCheck.message}";
115 
116     /** The key of the message: {item} is required. */
117     public static final String CONSTRAINTS_NotBlank_MESSAGE = "{constraints.NotBlank.message}";
118 
119     /** The key of the message: {item} is required. */
120     public static final String CONSTRAINTS_NotEmpty_MESSAGE = "{constraints.NotEmpty.message}";
121 
122     /** The key of the message: The script expression "{script}" is not 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} contains unsafe HTML content. */
129     public static final String CONSTRAINTS_SafeHtml_MESSAGE = "{constraints.SafeHtml.message}";
130 
131     /** The key of the message: The script expression "{script}" is not true. */
132     public static final String CONSTRAINTS_ScriptAssert_MESSAGE = "{constraints.ScriptAssert.message}";
133 
134     /** The key of the message: {item} is not 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} must be a number. */
141     public static final String CONSTRAINTS_TypeInteger_MESSAGE = "{constraints.TypeInteger.message}";
142 
143     /** The key of the message: {item} must be a number. */
144     public static final String CONSTRAINTS_TypeLong_MESSAGE = "{constraints.TypeLong.message}";
145 
146     /** The key of the message: {item} must be a number. */
147     public static final String CONSTRAINTS_TypeFloat_MESSAGE = "{constraints.TypeFloat.message}";
148 
149     /** The key of the message: {item} must be a number. */
150     public static final String CONSTRAINTS_TypeDouble_MESSAGE = "{constraints.TypeDouble.message}";
151 
152     /** The key of the message: {item} cannot be converted to {propertyType}. */
153     public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}";
154 
155     /** The key of the message: {item} has an unrecognized URI. */
156     public static final String CONSTRAINTS_UriType_MESSAGE = "{constraints.UriType.message}";
157 
158     /** The key of the message: {item} is not a valid 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: Illegal transition. Please try again. */
165     public static final String ERRORS_APP_ILLEGAL_TRANSITION = "{errors.app.illegal.transition}";
166 
167     /** The key of the message: It may have been deleted by another process. Please try again. */
168     public static final String ERRORS_APP_DB_ALREADY_DELETED = "{errors.app.db.already.deleted}";
169 
170     /** The key of the message: It may have been updated by another process. Please try again. */
171     public static final String ERRORS_APP_DB_ALREADY_UPDATED = "{errors.app.db.already.updated}";
172 
173     /** The key of the message: The data already exists. Please try again. */
174     public static final String ERRORS_APP_DB_ALREADY_EXISTS = "{errors.app.db.already.exists}";
175 
176     /** The key of the message: It may have been processed before this request. Please try again. */
177     public static final String ERRORS_APP_DOUBLE_SUBMIT_REQUEST = "{errors.app.double.submit.request}";
178 
179     /** The key of the message: Invalid username or password. */
180     public static final String ERRORS_login_error = "{errors.login_error}";
181 
182     /** The key of the message: SSO login process failed. */
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: The 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 the 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: This file type 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 at a wizard. */
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. Cause: {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 can be displayed. */
225     public static final String ERRORS_result_size_exceeded = "{errors.result_size_exceeded}";
226 
227     /** The key of the message: The file {0} 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 the file {0}. */
231     public static final String ERRORS_failed_to_delete_file = "{errors.failed_to_delete_file}";
232 
233     /** The key of the message: Doc ID is not found. Cause: {0} */
234     public static final String ERRORS_docid_not_found = "{errors.docid_not_found}";
235 
236     /** The key of the message: The URL for the document ID is not found. Cause: {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. Cause: {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 a 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 a 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 a 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 a 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 a stemmer override file. */
255     public static final String ERRORS_failed_to_download_stemmeroverride_file = "{errors.failed_to_download_stemmeroverride_file}";
256 
257     /** The key of the message: Failed to upload a stemmer override file. */
258     public static final String ERRORS_failed_to_upload_stemmeroverride_file = "{errors.failed_to_upload_stemmeroverride_file}";
259 
260     /** The key of the message: Failed to download a Kuromoji file. */
261     public static final String ERRORS_failed_to_download_kuromoji_file = "{errors.failed_to_download_kuromoji_file}";
262 
263     /** The key of the message: Failed to upload a Kuromoji file. */
264     public static final String ERRORS_failed_to_upload_kuromoji_file = "{errors.failed_to_upload_kuromoji_file}";
265 
266     /** The key of the message: Failed to download a protwords file. */
267     public static final String ERRORS_failed_to_download_protwords_file = "{errors.failed_to_download_protwords_file}";
268 
269     /** The key of the message: Failed to upload a protwords file. */
270     public static final String ERRORS_failed_to_upload_protwords_file = "{errors.failed_to_upload_protwords_file}";
271 
272     /** The key of the message: Failed to download a stopwords file. */
273     public static final String ERRORS_failed_to_download_stopwords_file = "{errors.failed_to_download_stopwords_file}";
274 
275     /** The key of the message: Failed to upload a stopwords file. */
276     public static final String ERRORS_failed_to_upload_stopwords_file = "{errors.failed_to_upload_stopwords_file}";
277 
278     /** The key of the message: Failed to download an elevate word file. */
279     public static final String ERRORS_failed_to_download_elevate_file = "{errors.failed_to_download_elevate_file}";
280 
281     /** The key of the message: Failed to upload an elevate word file. */
282     public static final String ERRORS_failed_to_upload_elevate_file = "{errors.failed_to_upload_elevate_file}";
283 
284     /** The key of the message: Failed to download a bad word file. */
285     public static final String ERRORS_failed_to_download_badword_file = "{errors.failed_to_download_badword_file}";
286 
287     /** The key of the message: Failed to upload a bad word file. */
288     public static final String ERRORS_failed_to_upload_badword_file = "{errors.failed_to_upload_badword_file}";
289 
290     /** The key of the message: Failed to download a mapping file. */
291     public static final String ERRORS_failed_to_download_mapping_file = "{errors.failed_to_download_mapping_file}";
292 
293     /** The key of the message: Failed to upload a mapping file. */
294     public static final String ERRORS_failed_to_upload_mapping_file = "{errors.failed_to_upload_mapping_file}";
295 
296     /** The key of the message: {0} is invalid as a token. */
297     public static final String ERRORS_invalid_kuromoji_token = "{errors.invalid_kuromoji_token}";
298 
299     /** The key of the message: The number of segmentation for {0} and {1} is different. */
300     public static final String ERRORS_invalid_kuromoji_segmentation = "{errors.invalid_kuromoji_segmentation}";
301 
302     /** The key of the message: {1} is invalid for {0}. */
303     public static final String ERRORS_invalid_str_is_included = "{errors.invalid_str_is_included}";
304 
305     /** The key of the message: Password is required. */
306     public static final String ERRORS_blank_password = "{errors.blank_password}";
307 
308     /** The key of the message: Password must be at least {0} characters long. */
309     public static final String ERRORS_password_length = "{errors.password_length}";
310 
311     /** The key of the message: Password must contain at least one uppercase letter. */
312     public static final String ERRORS_password_no_uppercase = "{errors.password_no_uppercase}";
313 
314     /** The key of the message: Password must contain at least one lowercase letter. */
315     public static final String ERRORS_password_no_lowercase = "{errors.password_no_lowercase}";
316 
317     /** The key of the message: Password must contain at least one digit. */
318     public static final String ERRORS_password_no_digit = "{errors.password_no_digit}";
319 
320     /** The key of the message: Password must contain at least one special character. */
321     public static final String ERRORS_password_no_special_char = "{errors.password_no_special_char}";
322 
323     /** The key of the message: Password is not allowed. Please choose a different password. */
324     public static final String ERRORS_password_is_blacklisted = "{errors.password_is_blacklisted}";
325 
326     /** The key of the message: Does not match a confirmation password. */
327     public static final String ERRORS_invalid_confirm_password = "{errors.invalid_confirm_password}";
328 
329     /** The key of the message: A crawler is running. You cannot delete documents. */
330     public static final String ERRORS_cannot_delete_doc_because_of_running = "{errors.cannot_delete_doc_because_of_running}";
331 
332     /** The key of the message: Failed to delete a document. */
333     public static final String ERRORS_failed_to_delete_doc_in_admin = "{errors.failed_to_delete_doc_in_admin}";
334 
335     /** The key of the message: Failed to send a test mail. */
336     public static final String ERRORS_failed_to_send_testmail = "{errors.failed_to_send_testmail}";
337 
338     /** The key of the message: The specified query has an unknown condition. */
339     public static final String ERRORS_invalid_query_unknown = "{errors.invalid_query_unknown}";
340 
341     /** The key of the message: The given query is invalid. */
342     public static final String ERRORS_invalid_query_parse_error = "{errors.invalid_query_parse_error}";
343 
344     /** The key of the message: The specified sort {0} is invalid. */
345     public static final String ERRORS_invalid_query_sort_value = "{errors.invalid_query_sort_value}";
346 
347     /** The key of the message: The specified sort {0} is unsupported. */
348     public static final String ERRORS_invalid_query_unsupported_sort_field = "{errors.invalid_query_unsupported_sort_field}";
349 
350     /** The key of the message: The specified sort order {0} is unsupported. */
351     public static final String ERRORS_invalid_query_unsupported_sort_order = "{errors.invalid_query_unsupported_sort_order}";
352 
353     /** The key of the message: Could not process the specified query. */
354     public static final String ERRORS_invalid_query_cannot_process = "{errors.invalid_query_cannot_process}";
355 
356     /** The key of the message: The mode is incorrect. (not {0}, but {1}) */
357     public static final String ERRORS_crud_invalid_mode = "{errors.crud_invalid_mode}";
358 
359     /** The key of the message: Failed to create a new data. */
360     public static final String ERRORS_crud_failed_to_create_instance = "{errors.crud_failed_to_create_instance}";
361 
362     /** The key of the message: Failed to create a new data. ({0}) */
363     public static final String ERRORS_crud_failed_to_create_crud_table = "{errors.crud_failed_to_create_crud_table}";
364 
365     /** The key of the message: Failed to update the data. ({0}) */
366     public static final String ERRORS_crud_failed_to_update_crud_table = "{errors.crud_failed_to_update_crud_table}";
367 
368     /** The key of the message: Failed to delete the data. ({0}) */
369     public static final String ERRORS_crud_failed_to_delete_crud_table = "{errors.crud_failed_to_delete_crud_table}";
370 
371     /** The key of the message: The data {0} is not found. */
372     public static final String ERRORS_crud_could_not_find_crud_table = "{errors.crud_could_not_find_crud_table}";
373 
374     /** The key of the message: Could not find any backup index. */
375     public static final String ERRORS_could_not_find_backup_index = "{errors.could_not_find_backup_index}";
376 
377     /** The key of the message: The current password is not correct. */
378     public static final String ERRORS_no_user_for_changing_password = "{errors.no_user_for_changing_password}";
379 
380     /** The key of the message: Failed to change your password. */
381     public static final String ERRORS_failed_to_change_password = "{errors.failed_to_change_password}";
382 
383     /** The key of the message: Unknown version for upgrade. */
384     public static final String ERRORS_unknown_version_for_upgrade = "{errors.unknown_version_for_upgrade}";
385 
386     /** The key of the message: Failed to upgrade from {0}. */
387     public static final String ERRORS_failed_to_upgrade_from = "{errors.failed_to_upgrade_from}";
388 
389     /** The key of the message: Failed to start re-indexing from {0} to {1}. */
390     public static final String ERRORS_failed_to_reindex = "{errors.failed_to_reindex}";
391 
392     /** The key of the message: Failed to rebuild config indices. */
393     public static final String ERRORS_failed_to_rebuild_config_index = "{errors.failed_to_rebuild_config_index}";
394 
395     /** The key of the message: Please select at least one target index to rebuild. */
396     public static final String ERRORS_no_target_index_selected = "{errors.no_target_index_selected}";
397 
398     /** The key of the message: The operation is already running on {0}. */
399     public static final String ERRORS_operation_already_running = "{errors.operation_already_running}";
400 
401     /** The key of the message: Failed to read a request file: {0} */
402     public static final String ERRORS_failed_to_read_request_file = "{errors.failed_to_read_request_file}";
403 
404     /** The key of the message: Invalid header line: {0} */
405     public static final String ERRORS_invalid_header_for_request_file = "{errors.invalid_header_for_request_file}";
406 
407     /** The key of the message: You cannot delete a user who is logged in. */
408     public static final String ERRORS_could_not_delete_logged_in_user = "{errors.could_not_delete_logged_in_user}";
409 
410     /** The key of the message: Unauthorized request. */
411     public static final String ERRORS_unauthorized_request = "{errors.unauthorized_request}";
412 
413     /** The key of the message: Failed to print a thread dump. */
414     public static final String ERRORS_failed_to_print_thread_dump = "{errors.failed_to_print_thread_dump}";
415 
416     /** The key of the message: {0} is not supported. */
417     public static final String ERRORS_file_is_not_supported = "{errors.file_is_not_supported}";
418 
419     /** The key of the message: {0} is not found. */
420     public static final String ERRORS_plugin_file_is_not_found = "{errors.plugin_file_is_not_found}";
421 
422     /** The key of the message: Failed to install {0}. */
423     public static final String ERRORS_failed_to_install_plugin = "{errors.failed_to_install_plugin}";
424 
425     /** The key of the message: Could not find available plugins. */
426     public static final String ERRORS_failed_to_find_plugins = "{errors.failed_to_find_plugins}";
427 
428     /** The key of the message: Failed to process a request: {0} */
429     public static final String ERRORS_failed_to_process_sso_request = "{errors.failed_to_process_sso_request}";
430 
431     /** The key of the message: {0} is required. */
432     public static final String ERRORS_property_required = "{errors.property_required}";
433 
434     /** The key of the message: {0} must be an integer. */
435     public static final String ERRORS_property_type_integer = "{errors.property_type_integer}";
436 
437     /** The key of the message: {0} must be a long. */
438     public static final String ERRORS_property_type_long = "{errors.property_type_long}";
439 
440     /** The key of the message: {0} must be a float. */
441     public static final String ERRORS_property_type_float = "{errors.property_type_float}";
442 
443     /** The key of the message: {0} must be a double. */
444     public static final String ERRORS_property_type_double = "{errors.property_type_double}";
445 
446     /** The key of the message: {0} must be a date. */
447     public static final String ERRORS_property_type_date = "{errors.property_type_date}";
448 
449     /** The key of the message: {0} must be an array. */
450     public static final String ERRORS_property_type_array = "{errors.property_type_array}";
451 
452     /** The key of the message: Failed to upload {0}. */
453     public static final String ERRORS_storage_file_upload_failure = "{errors.storage_file_upload_failure}";
454 
455     /** The key of the message: The target file does not exist in the storage. */
456     public static final String ERRORS_storage_file_not_found = "{errors.storage_file_not_found}";
457 
458     /** The key of the message: Failed to download {0}. */
459     public static final String ERRORS_storage_file_download_failure = "{errors.storage_file_download_failure}";
460 
461     /** The key of the message: Storage Access Error: {0} */
462     public static final String ERRORS_storage_access_error = "{errors.storage_access_error}";
463 
464     /** The key of the message: Please specify a file to upload. */
465     public static final String ERRORS_storage_no_upload_file = "{errors.storage_no_upload_file}";
466 
467     /** The key of the message: The directory name is invalid. */
468     public static final String ERRORS_storage_directory_name_is_invalid = "{errors.storage_directory_name_is_invalid}";
469 
470     /** The key of the message: Failed to update tags of {0}. */
471     public static final String ERRORS_storage_tags_update_failure = "{errors.storage_tags_update_failure}";
472 
473     /** The key of the message: Updated parameters. */
474     public static final String SUCCESS_update_crawler_params = "{success.update_crawler_params}";
475 
476     /** The key of the message: Started a process to delete documents from an index. */
477     public static final String SUCCESS_delete_doc_from_index = "{success.delete_doc_from_index}";
478 
479     /** The key of the message: Deleted session data. */
480     public static final String SUCCESS_crawling_info_delete_all = "{success.crawling_info_delete_all}";
481 
482     /** The key of the message: Started a crawl process. */
483     public static final String SUCCESS_start_crawl_process = "{success.start_crawl_process}";
484 
485     /** The key of the message: Updated {0}. */
486     public static final String SUCCESS_upload_design_file = "{success.upload_design_file}";
487 
488     /** The key of the message: Updated {0}. */
489     public static final String SUCCESS_update_design_jsp_file = "{success.update_design_jsp_file}";
490 
491     /** The key of the message: Created a crawling config {0}. */
492     public static final String SUCCESS_create_crawling_config_at_wizard = "{success.create_crawling_config_at_wizard}";
493 
494     /** The key of the message: Deleted failure URLs. */
495     public static final String SUCCESS_failure_url_delete_all = "{success.failure_url_delete_all}";
496 
497     /** The key of the message: Deleted {0} file. */
498     public static final String SUCCESS_delete_file = "{success.delete_file}";
499 
500     /** The key of the message: Started a job: {0}. */
501     public static final String SUCCESS_job_started = "{success.job_started}";
502 
503     /** The key of the message: Stopped a job: {0}. */
504     public static final String SUCCESS_job_stopped = "{success.job_stopped}";
505 
506     /** The key of the message: Uploaded a synonym file. */
507     public static final String SUCCESS_upload_synonym_file = "{success.upload_synonym_file}";
508 
509     /** The key of the message: Uploaded a protwords file. */
510     public static final String SUCCESS_upload_protwords_file = "{success.upload_protwords_file}";
511 
512     /** The key of the message: Uploaded a stopwords file. */
513     public static final String SUCCESS_upload_stopwords_file = "{success.upload_stopwords_file}";
514 
515     /** The key of the message: Uploaded a stemmer override file. */
516     public static final String SUCCESS_upload_stemmeroverride_file = "{success.upload_stemmeroverride_file}";
517 
518     /** The key of the message: Uploaded a Kuromoji file. */
519     public static final String SUCCESS_upload_kuromoji_file = "{success.upload_kuromoji_file}";
520 
521     /** The key of the message: Uploaded an elevate word file. */
522     public static final String SUCCESS_upload_elevate_word = "{success.upload_elevate_word}";
523 
524     /** The key of the message: Uploaded a bad word file. */
525     public static final String SUCCESS_upload_bad_word = "{success.upload_bad_word}";
526 
527     /** The key of the message: Uploaded a mapping file. */
528     public static final String SUCCESS_upload_mapping_file = "{success.upload_mapping_file}";
529 
530     /** The key of the message: Sent a test mail. */
531     public static final String SUCCESS_send_testmail = "{success.send_testmail}";
532 
533     /** The key of the message: Deleted job logs. */
534     public static final String SUCCESS_job_log_delete_all = "{success.job_log_delete_all}";
535 
536     /** The key of the message: Changed your password. */
537     public static final String SUCCESS_changed_password = "{success.changed_password}";
538 
539     /** The key of the message: Started a data update process. */
540     public static final String SUCCESS_started_data_update = "{success.started_data_update}";
541 
542     /** The key of the message: Started re-indexing. */
543     public static final String SUCCESS_reindex_started = "{success.reindex_started}";
544 
545     /** The key of the message: Started a bulk process. */
546     public static final String SUCCESS_bulk_process_started = "{success.bulk_process_started}";
547 
548     /** The key of the message: Printed a thread dump to a log file. */
549     public static final String SUCCESS_print_thread_dump = "{success.print_thread_dump}";
550 
551     /** The key of the message: Installing plugin {0}. */
552     public static final String SUCCESS_install_plugin = "{success.install_plugin}";
553 
554     /** The key of the message: Deleting plugin {0}. */
555     public static final String SUCCESS_delete_plugin = "{success.delete_plugin}";
556 
557     /** The key of the message: Uploaded {0}. */
558     public static final String SUCCESS_upload_file_to_storage = "{success.upload_file_to_storage}";
559 
560     /** The key of the message: You have been logged out. */
561     public static final String SUCCESS_sso_logout = "{success.sso_logout}";
562 
563     /** The key of the message: Updated tags of {0}. */
564     public static final String SUCCESS_update_storage_tags = "{success.update_storage_tags}";
565 
566     /** The key of the message: Created the data. */
567     public static final String SUCCESS_crud_create_crud_table = "{success.crud_create_crud_table}";
568 
569     /** The key of the message: Updated the data. */
570     public static final String SUCCESS_crud_update_crud_table = "{success.crud_update_crud_table}";
571 
572     /** The key of the message: Deleted the data. */
573     public static final String SUCCESS_crud_delete_crud_table = "{success.crud_delete_crud_table}";
574 
575     /**
576      * Add the created action message for the key 'errors.front_header' with parameters.
577      * <pre>
578      * message:
579      * </pre>
580      * @param property The property name for the message. (NotNull)
581      * @return this. (NotNull)
582      */
583     public FessMessages addErrorsFrontHeader(String property) {
584         assertPropertyNotNull(property);
585         add(property, new UserMessage(ERRORS_front_header));
586         return this;
587     }
588 
589     /**
590      * Add the created action message for the key 'errors.front_footer' with parameters.
591      * <pre>
592      * message:
593      * </pre>
594      * @param property The property name for the message. (NotNull)
595      * @return this. (NotNull)
596      */
597     public FessMessages addErrorsFrontFooter(String property) {
598         assertPropertyNotNull(property);
599         add(property, new UserMessage(ERRORS_front_footer));
600         return this;
601     }
602 
603     /**
604      * Add the created action message for the key 'errors.front_prefix' with parameters.
605      * <pre>
606      * message: &lt;div class="alert alert-warning"&gt;
607      * </pre>
608      * @param property The property name for the message. (NotNull)
609      * @return this. (NotNull)
610      */
611     public FessMessages addErrorsFrontPrefix(String property) {
612         assertPropertyNotNull(property);
613         add(property, new UserMessage(ERRORS_front_prefix));
614         return this;
615     }
616 
617     /**
618      * Add the created action message for the key 'errors.front_suffix' with parameters.
619      * <pre>
620      * message: &lt;/div&gt;
621      * </pre>
622      * @param property The property name for the message. (NotNull)
623      * @return this. (NotNull)
624      */
625     public FessMessages addErrorsFrontSuffix(String property) {
626         assertPropertyNotNull(property);
627         add(property, new UserMessage(ERRORS_front_suffix));
628         return this;
629     }
630 
631     /**
632      * Add the created action message for the key 'errors.header' with parameters.
633      * <pre>
634      * message: &lt;ul class="has-error"&gt;
635      * </pre>
636      * @param property The property name for the message. (NotNull)
637      * @return this. (NotNull)
638      */
639     public FessMessages addErrorsHeader(String property) {
640         assertPropertyNotNull(property);
641         add(property, new UserMessage(ERRORS_HEADER));
642         return this;
643     }
644 
645     /**
646      * Add the created action message for the key 'errors.footer' with parameters.
647      * <pre>
648      * message: &lt;/ul&gt;
649      * </pre>
650      * @param property The property name for the message. (NotNull)
651      * @return this. (NotNull)
652      */
653     public FessMessages addErrorsFooter(String property) {
654         assertPropertyNotNull(property);
655         add(property, new UserMessage(ERRORS_FOOTER));
656         return this;
657     }
658 
659     /**
660      * Add the created action message for the key 'errors.prefix' with parameters.
661      * <pre>
662      * message: &lt;li&gt;&lt;i class="fa fa-exclamation-circle"&gt;&lt;/i&gt;
663      * </pre>
664      * @param property The property name for the message. (NotNull)
665      * @return this. (NotNull)
666      */
667     public FessMessages addErrorsPrefix(String property) {
668         assertPropertyNotNull(property);
669         add(property, new UserMessage(ERRORS_PREFIX));
670         return this;
671     }
672 
673     /**
674      * Add the created action message for the key 'errors.suffix' with parameters.
675      * <pre>
676      * message: &lt;/li&gt;
677      * </pre>
678      * @param property The property name for the message. (NotNull)
679      * @return this. (NotNull)
680      */
681     public FessMessages addErrorsSuffix(String property) {
682         assertPropertyNotNull(property);
683         add(property, new UserMessage(ERRORS_SUFFIX));
684         return this;
685     }
686 
687     /**
688      * Add the created action message for the key 'constraints.AssertFalse.message' with parameters.
689      * <pre>
690      * message: {item} must be false.
691      * </pre>
692      * @param property The property name for the message. (NotNull)
693      * @return this. (NotNull)
694      */
695     public FessMessages addConstraintsAssertFalseMessage(String property) {
696         assertPropertyNotNull(property);
697         add(property, new UserMessage(CONSTRAINTS_AssertFalse_MESSAGE));
698         return this;
699     }
700 
701     /**
702      * Add the created action message for the key 'constraints.AssertTrue.message' with parameters.
703      * <pre>
704      * message: {item} must be true.
705      * </pre>
706      * @param property The property name for the message. (NotNull)
707      * @return this. (NotNull)
708      */
709     public FessMessages addConstraintsAssertTrueMessage(String property) {
710         assertPropertyNotNull(property);
711         add(property, new UserMessage(CONSTRAINTS_AssertTrue_MESSAGE));
712         return this;
713     }
714 
715     /**
716      * Add the created action message for the key 'constraints.DecimalMax.message' with parameters.
717      * <pre>
718      * message: {item} must be less than {value}.
719      * </pre>
720      * @param property The property name for the message. (NotNull)
721      * @param value The parameter value for message. (NotNull)
722      * @return this. (NotNull)
723      */
724     public FessMessages addConstraintsDecimalMaxMessage(String property, String value) {
725         assertPropertyNotNull(property);
726         add(property, new UserMessage(CONSTRAINTS_DecimalMax_MESSAGE, value));
727         return this;
728     }
729 
730     /**
731      * Add the created action message for the key 'constraints.DecimalMin.message' with parameters.
732      * <pre>
733      * message: {item} must be greater than {value}.
734      * </pre>
735      * @param property The property name for the message. (NotNull)
736      * @param value The parameter value for message. (NotNull)
737      * @return this. (NotNull)
738      */
739     public FessMessages addConstraintsDecimalMinMessage(String property, String value) {
740         assertPropertyNotNull(property);
741         add(property, new UserMessage(CONSTRAINTS_DecimalMin_MESSAGE, value));
742         return this;
743     }
744 
745     /**
746      * Add the created action message for the key 'constraints.Digits.message' with parameters.
747      * <pre>
748      * message: {item} must be a number. (expected: &lt;number&gt;.&lt;number&gt;)
749      * </pre>
750      * @param property The property name for the message. (NotNull)
751      * @return this. (NotNull)
752      */
753     public FessMessages addConstraintsDigitsMessage(String property) {
754         assertPropertyNotNull(property);
755         add(property, new UserMessage(CONSTRAINTS_Digits_MESSAGE));
756         return this;
757     }
758 
759     /**
760      * Add the created action message for the key 'constraints.Future.message' with parameters.
761      * <pre>
762      * message: {item} must be a future value.
763      * </pre>
764      * @param property The property name for the message. (NotNull)
765      * @return this. (NotNull)
766      */
767     public FessMessages addConstraintsFutureMessage(String property) {
768         assertPropertyNotNull(property);
769         add(property, new UserMessage(CONSTRAINTS_Future_MESSAGE));
770         return this;
771     }
772 
773     /**
774      * Add the created action message for the key 'constraints.Max.message' with parameters.
775      * <pre>
776      * message: {item} must be less than or equal to {value}.
777      * </pre>
778      * @param property The property name for the message. (NotNull)
779      * @param value The parameter value for message. (NotNull)
780      * @return this. (NotNull)
781      */
782     public FessMessages addConstraintsMaxMessage(String property, String value) {
783         assertPropertyNotNull(property);
784         add(property, new UserMessage(CONSTRAINTS_Max_MESSAGE, value));
785         return this;
786     }
787 
788     /**
789      * Add the created action message for the key 'constraints.Min.message' with parameters.
790      * <pre>
791      * message: {item} must be greater than or equal to {value}.
792      * </pre>
793      * @param property The property name for the message. (NotNull)
794      * @param value The parameter value for message. (NotNull)
795      * @return this. (NotNull)
796      */
797     public FessMessages addConstraintsMinMessage(String property, String value) {
798         assertPropertyNotNull(property);
799         add(property, new UserMessage(CONSTRAINTS_Min_MESSAGE, value));
800         return this;
801     }
802 
803     /**
804      * Add the created action message for the key 'constraints.NotNull.message' with parameters.
805      * <pre>
806      * message: {item} is required.
807      * </pre>
808      * @param property The property name for the message. (NotNull)
809      * @return this. (NotNull)
810      */
811     public FessMessages addConstraintsNotNullMessage(String property) {
812         assertPropertyNotNull(property);
813         add(property, new UserMessage(CONSTRAINTS_NotNull_MESSAGE));
814         return this;
815     }
816 
817     /**
818      * Add the created action message for the key 'constraints.Null.message' with parameters.
819      * <pre>
820      * message: {item} must be null.
821      * </pre>
822      * @param property The property name for the message. (NotNull)
823      * @return this. (NotNull)
824      */
825     public FessMessages addConstraintsNullMessage(String property) {
826         assertPropertyNotNull(property);
827         add(property, new UserMessage(CONSTRAINTS_Null_MESSAGE));
828         return this;
829     }
830 
831     /**
832      * Add the created action message for the key 'constraints.Past.message' with parameters.
833      * <pre>
834      * message: {item} must be a past value.
835      * </pre>
836      * @param property The property name for the message. (NotNull)
837      * @return this. (NotNull)
838      */
839     public FessMessages addConstraintsPastMessage(String property) {
840         assertPropertyNotNull(property);
841         add(property, new UserMessage(CONSTRAINTS_Past_MESSAGE));
842         return this;
843     }
844 
845     /**
846      * Add the created action message for the key 'constraints.Pattern.message' with parameters.
847      * <pre>
848      * message: {item} does not match "{regexp}".
849      * </pre>
850      * @param property The property name for the message. (NotNull)
851      * @param regexp The parameter regexp for message. (NotNull)
852      * @return this. (NotNull)
853      */
854     public FessMessages addConstraintsPatternMessage(String property, String regexp) {
855         assertPropertyNotNull(property);
856         add(property, new UserMessage(CONSTRAINTS_Pattern_MESSAGE, regexp));
857         return this;
858     }
859 
860     /**
861      * Add the created action message for the key 'constraints.Size.message' with parameters.
862      * <pre>
863      * message: The size of {item} must be between {min} and {max}.
864      * </pre>
865      * @param property The property name for the message. (NotNull)
866      * @param min The parameter min for message. (NotNull)
867      * @param max The parameter max for message. (NotNull)
868      * @return this. (NotNull)
869      */
870     public FessMessages addConstraintsSizeMessage(String property, String min, String max) {
871         assertPropertyNotNull(property);
872         add(property, new UserMessage(CONSTRAINTS_Size_MESSAGE, min, max));
873         return this;
874     }
875 
876     /**
877      * Add the created action message for the key 'constraints.CreditCardNumber.message' with parameters.
878      * <pre>
879      * message: {item} is an invalid credit card number.
880      * </pre>
881      * @param property The property name for the message. (NotNull)
882      * @return this. (NotNull)
883      */
884     public FessMessages addConstraintsCreditCardNumberMessage(String property) {
885         assertPropertyNotNull(property);
886         add(property, new UserMessage(CONSTRAINTS_CreditCardNumber_MESSAGE));
887         return this;
888     }
889 
890     /**
891      * Add the created action message for the key 'constraints.EAN.message' with parameters.
892      * <pre>
893      * message: {item} is an invalid {type} barcode.
894      * </pre>
895      * @param property The property name for the message. (NotNull)
896      * @param type The parameter type for message. (NotNull)
897      * @return this. (NotNull)
898      */
899     public FessMessages addConstraintsEanMessage(String property, String type) {
900         assertPropertyNotNull(property);
901         add(property, new UserMessage(CONSTRAINTS_EAN_MESSAGE, type));
902         return this;
903     }
904 
905     /**
906      * Add the created action message for the key 'constraints.Email.message' with parameters.
907      * <pre>
908      * message: {item} is not a valid email address.
909      * </pre>
910      * @param property The property name for the message. (NotNull)
911      * @return this. (NotNull)
912      */
913     public FessMessages addConstraintsEmailMessage(String property) {
914         assertPropertyNotNull(property);
915         add(property, new UserMessage(CONSTRAINTS_Email_MESSAGE));
916         return this;
917     }
918 
919     /**
920      * Add the created action message for the key 'constraints.Length.message' with parameters.
921      * <pre>
922      * message: The length of {item} must be between {min} and {max}.
923      * </pre>
924      * @param property The property name for the message. (NotNull)
925      * @param min The parameter min for message. (NotNull)
926      * @param max The parameter max for message. (NotNull)
927      * @return this. (NotNull)
928      */
929     public FessMessages addConstraintsLengthMessage(String property, String min, String max) {
930         assertPropertyNotNull(property);
931         add(property, new UserMessage(CONSTRAINTS_Length_MESSAGE, min, max));
932         return this;
933     }
934 
935     /**
936      * Add the created action message for the key 'constraints.LuhnCheck.message' with parameters.
937      * <pre>
938      * message: The Luhn Modulo 11 checksum of {value} is incorrect.
939      * </pre>
940      * @param property The property name for the message. (NotNull)
941      * @param value The parameter value for message. (NotNull)
942      * @return this. (NotNull)
943      */
944     public FessMessages addConstraintsLuhnCheckMessage(String property, String value) {
945         assertPropertyNotNull(property);
946         add(property, new UserMessage(CONSTRAINTS_LuhnCheck_MESSAGE, value));
947         return this;
948     }
949 
950     /**
951      * Add the created action message for the key 'constraints.Mod10Check.message' with parameters.
952      * <pre>
953      * message: The Modulo 10 checksum of {value} is incorrect.
954      * </pre>
955      * @param property The property name for the message. (NotNull)
956      * @param value The parameter value for message. (NotNull)
957      * @return this. (NotNull)
958      */
959     public FessMessages addConstraintsMod10CheckMessage(String property, String value) {
960         assertPropertyNotNull(property);
961         add(property, new UserMessage(CONSTRAINTS_Mod10Check_MESSAGE, value));
962         return this;
963     }
964 
965     /**
966      * Add the created action message for the key 'constraints.Mod11Check.message' with parameters.
967      * <pre>
968      * message: The Modulo 11 checksum of {value} is incorrect.
969      * </pre>
970      * @param property The property name for the message. (NotNull)
971      * @param value The parameter value for message. (NotNull)
972      * @return this. (NotNull)
973      */
974     public FessMessages addConstraintsMod11CheckMessage(String property, String value) {
975         assertPropertyNotNull(property);
976         add(property, new UserMessage(CONSTRAINTS_Mod11Check_MESSAGE, value));
977         return this;
978     }
979 
980     /**
981      * Add the created action message for the key 'constraints.ModCheck.message' with parameters.
982      * <pre>
983      * message: The {modType} checksum of {value} is incorrect.
984      * </pre>
985      * @param property The property name for the message. (NotNull)
986      * @param modType The parameter modType for message. (NotNull)
987      * @param value The parameter value for message. (NotNull)
988      * @return this. (NotNull)
989      */
990     public FessMessages addConstraintsModCheckMessage(String property, String modType, String value) {
991         assertPropertyNotNull(property);
992         add(property, new UserMessage(CONSTRAINTS_ModCheck_MESSAGE, modType, value));
993         return this;
994     }
995 
996     /**
997      * Add the created action message for the key 'constraints.NotBlank.message' with parameters.
998      * <pre>
999      * message: {item} is required.
1000      * </pre>
1001      * @param property The property name for the message. (NotNull)
1002      * @return this. (NotNull)
1003      */
1004     public FessMessages addConstraintsNotBlankMessage(String property) {
1005         assertPropertyNotNull(property);
1006         add(property, new UserMessage(CONSTRAINTS_NotBlank_MESSAGE));
1007         return this;
1008     }
1009 
1010     /**
1011      * Add the created action message for the key 'constraints.NotEmpty.message' with parameters.
1012      * <pre>
1013      * message: {item} is required.
1014      * </pre>
1015      * @param property The property name for the message. (NotNull)
1016      * @return this. (NotNull)
1017      */
1018     public FessMessages addConstraintsNotEmptyMessage(String property) {
1019         assertPropertyNotNull(property);
1020         add(property, new UserMessage(CONSTRAINTS_NotEmpty_MESSAGE));
1021         return this;
1022     }
1023 
1024     /**
1025      * Add the created action message for the key 'constraints.ParametersScriptAssert.message' with parameters.
1026      * <pre>
1027      * message: The script expression "{script}" is not true.
1028      * </pre>
1029      * @param property The property name for the message. (NotNull)
1030      * @param script The parameter script for message. (NotNull)
1031      * @return this. (NotNull)
1032      */
1033     public FessMessages addConstraintsParametersScriptAssertMessage(String property, String script) {
1034         assertPropertyNotNull(property);
1035         add(property, new UserMessage(CONSTRAINTS_ParametersScriptAssert_MESSAGE, script));
1036         return this;
1037     }
1038 
1039     /**
1040      * Add the created action message for the key 'constraints.Range.message' with parameters.
1041      * <pre>
1042      * message: {item} must be between {min} and {max}.
1043      * </pre>
1044      * @param property The property name for the message. (NotNull)
1045      * @param min The parameter min for message. (NotNull)
1046      * @param max The parameter max for message. (NotNull)
1047      * @return this. (NotNull)
1048      */
1049     public FessMessages addConstraintsRangeMessage(String property, String min, String max) {
1050         assertPropertyNotNull(property);
1051         add(property, new UserMessage(CONSTRAINTS_Range_MESSAGE, min, max));
1052         return this;
1053     }
1054 
1055     /**
1056      * Add the created action message for the key 'constraints.SafeHtml.message' with parameters.
1057      * <pre>
1058      * message: {item} contains unsafe HTML content.
1059      * </pre>
1060      * @param property The property name for the message. (NotNull)
1061      * @return this. (NotNull)
1062      */
1063     public FessMessages addConstraintsSafeHtmlMessage(String property) {
1064         assertPropertyNotNull(property);
1065         add(property, new UserMessage(CONSTRAINTS_SafeHtml_MESSAGE));
1066         return this;
1067     }
1068 
1069     /**
1070      * Add the created action message for the key 'constraints.ScriptAssert.message' with parameters.
1071      * <pre>
1072      * message: The script expression "{script}" is not true.
1073      * </pre>
1074      * @param property The property name for the message. (NotNull)
1075      * @param script The parameter script for message. (NotNull)
1076      * @return this. (NotNull)
1077      */
1078     public FessMessages addConstraintsScriptAssertMessage(String property, String script) {
1079         assertPropertyNotNull(property);
1080         add(property, new UserMessage(CONSTRAINTS_ScriptAssert_MESSAGE, script));
1081         return this;
1082     }
1083 
1084     /**
1085      * Add the created action message for the key 'constraints.URL.message' with parameters.
1086      * <pre>
1087      * message: {item} is not a valid URL.
1088      * </pre>
1089      * @param property The property name for the message. (NotNull)
1090      * @return this. (NotNull)
1091      */
1092     public FessMessages addConstraintsUrlMessage(String property) {
1093         assertPropertyNotNull(property);
1094         add(property, new UserMessage(CONSTRAINTS_URL_MESSAGE));
1095         return this;
1096     }
1097 
1098     /**
1099      * Add the created action message for the key 'constraints.Required.message' with parameters.
1100      * <pre>
1101      * message: {item} is required.
1102      * </pre>
1103      * @param property The property name for the message. (NotNull)
1104      * @return this. (NotNull)
1105      */
1106     public FessMessages addConstraintsRequiredMessage(String property) {
1107         assertPropertyNotNull(property);
1108         add(property, new UserMessage(CONSTRAINTS_Required_MESSAGE));
1109         return this;
1110     }
1111 
1112     /**
1113      * Add the created action message for the key 'constraints.TypeInteger.message' with parameters.
1114      * <pre>
1115      * message: {item} must be a number.
1116      * </pre>
1117      * @param property The property name for the message. (NotNull)
1118      * @return this. (NotNull)
1119      */
1120     public FessMessages addConstraintsTypeIntegerMessage(String property) {
1121         assertPropertyNotNull(property);
1122         add(property, new UserMessage(CONSTRAINTS_TypeInteger_MESSAGE));
1123         return this;
1124     }
1125 
1126     /**
1127      * Add the created action message for the key 'constraints.TypeLong.message' with parameters.
1128      * <pre>
1129      * message: {item} must be a number.
1130      * </pre>
1131      * @param property The property name for the message. (NotNull)
1132      * @return this. (NotNull)
1133      */
1134     public FessMessages addConstraintsTypeLongMessage(String property) {
1135         assertPropertyNotNull(property);
1136         add(property, new UserMessage(CONSTRAINTS_TypeLong_MESSAGE));
1137         return this;
1138     }
1139 
1140     /**
1141      * Add the created action message for the key 'constraints.TypeFloat.message' with parameters.
1142      * <pre>
1143      * message: {item} must be a number.
1144      * </pre>
1145      * @param property The property name for the message. (NotNull)
1146      * @return this. (NotNull)
1147      */
1148     public FessMessages addConstraintsTypeFloatMessage(String property) {
1149         assertPropertyNotNull(property);
1150         add(property, new UserMessage(CONSTRAINTS_TypeFloat_MESSAGE));
1151         return this;
1152     }
1153 
1154     /**
1155      * Add the created action message for the key 'constraints.TypeDouble.message' with parameters.
1156      * <pre>
1157      * message: {item} must be a number.
1158      * </pre>
1159      * @param property The property name for the message. (NotNull)
1160      * @return this. (NotNull)
1161      */
1162     public FessMessages addConstraintsTypeDoubleMessage(String property) {
1163         assertPropertyNotNull(property);
1164         add(property, new UserMessage(CONSTRAINTS_TypeDouble_MESSAGE));
1165         return this;
1166     }
1167 
1168     /**
1169      * Add the created action message for the key 'constraints.TypeAny.message' with parameters.
1170      * <pre>
1171      * message: {item} cannot be converted to {propertyType}.
1172      * </pre>
1173      * @param property The property name for the message. (NotNull)
1174      * @param propertyType The parameter propertyType for message. (NotNull)
1175      * @return this. (NotNull)
1176      */
1177     public FessMessages addConstraintsTypeAnyMessage(String property, String propertyType) {
1178         assertPropertyNotNull(property);
1179         add(property, new UserMessage(CONSTRAINTS_TypeAny_MESSAGE, propertyType));
1180         return this;
1181     }
1182 
1183     /**
1184      * Add the created action message for the key 'constraints.UriType.message' with parameters.
1185      * <pre>
1186      * message: {item} has an unrecognized URI.
1187      * </pre>
1188      * @param property The property name for the message. (NotNull)
1189      * @return this. (NotNull)
1190      */
1191     public FessMessages addConstraintsUriTypeMessage(String property) {
1192         assertPropertyNotNull(property);
1193         add(property, new UserMessage(CONSTRAINTS_UriType_MESSAGE));
1194         return this;
1195     }
1196 
1197     /**
1198      * Add the created action message for the key 'constraints.CronExpression.message' with parameters.
1199      * <pre>
1200      * message: {item} is not a valid CRON expression.
1201      * </pre>
1202      * @param property The property name for the message. (NotNull)
1203      * @return this. (NotNull)
1204      */
1205     public FessMessages addConstraintsCronExpressionMessage(String property) {
1206         assertPropertyNotNull(property);
1207         add(property, new UserMessage(CONSTRAINTS_CronExpression_MESSAGE));
1208         return this;
1209     }
1210 
1211     /**
1212      * Add the created action message for the key 'errors.login.failure' with parameters.
1213      * <pre>
1214      * message: Login failed.
1215      * comment:
1216      * /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1217      * five framework-embedded messages (don't change key names)
1218      * - - - - - - - - - -/
1219      * </pre>
1220      * @param property The property name for the message. (NotNull)
1221      * @return this. (NotNull)
1222      */
1223     public FessMessages addErrorsLoginFailure(String property) {
1224         assertPropertyNotNull(property);
1225         add(property, new UserMessage(ERRORS_LOGIN_FAILURE));
1226         return this;
1227     }
1228 
1229     /**
1230      * Add the created action message for the key 'errors.app.illegal.transition' with parameters.
1231      * <pre>
1232      * message: Illegal transition. Please try again.
1233      * </pre>
1234      * @param property The property name for the message. (NotNull)
1235      * @return this. (NotNull)
1236      */
1237     public FessMessages addErrorsAppIllegalTransition(String property) {
1238         assertPropertyNotNull(property);
1239         add(property, new UserMessage(ERRORS_APP_ILLEGAL_TRANSITION));
1240         return this;
1241     }
1242 
1243     /**
1244      * Add the created action message for the key 'errors.app.db.already.deleted' with parameters.
1245      * <pre>
1246      * message: It may have been deleted by another process. Please try again.
1247      * </pre>
1248      * @param property The property name for the message. (NotNull)
1249      * @return this. (NotNull)
1250      */
1251     public FessMessages addErrorsAppDbAlreadyDeleted(String property) {
1252         assertPropertyNotNull(property);
1253         add(property, new UserMessage(ERRORS_APP_DB_ALREADY_DELETED));
1254         return this;
1255     }
1256 
1257     /**
1258      * Add the created action message for the key 'errors.app.db.already.updated' with parameters.
1259      * <pre>
1260      * message: It may have been updated by another process. Please try again.
1261      * </pre>
1262      * @param property The property name for the message. (NotNull)
1263      * @return this. (NotNull)
1264      */
1265     public FessMessages addErrorsAppDbAlreadyUpdated(String property) {
1266         assertPropertyNotNull(property);
1267         add(property, new UserMessage(ERRORS_APP_DB_ALREADY_UPDATED));
1268         return this;
1269     }
1270 
1271     /**
1272      * Add the created action message for the key 'errors.app.db.already.exists' with parameters.
1273      * <pre>
1274      * message: The data already exists. Please try again.
1275      * </pre>
1276      * @param property The property name for the message. (NotNull)
1277      * @return this. (NotNull)
1278      */
1279     public FessMessages addErrorsAppDbAlreadyExists(String property) {
1280         assertPropertyNotNull(property);
1281         add(property, new UserMessage(ERRORS_APP_DB_ALREADY_EXISTS));
1282         return this;
1283     }
1284 
1285     /**
1286      * Add the created action message for the key 'errors.app.double.submit.request' with parameters.
1287      * <pre>
1288      * message: It may have been processed before this request. Please try again.
1289      * </pre>
1290      * @param property The property name for the message. (NotNull)
1291      * @return this. (NotNull)
1292      */
1293     public FessMessages addErrorsAppDoubleSubmitRequest(String property) {
1294         assertPropertyNotNull(property);
1295         add(property, new UserMessage(ERRORS_APP_DOUBLE_SUBMIT_REQUEST));
1296         return this;
1297     }
1298 
1299     /**
1300      * Add the created action message for the key 'errors.login_error' with parameters.
1301      * <pre>
1302      * message: Invalid username or password.
1303      * </pre>
1304      * @param property The property name for the message. (NotNull)
1305      * @return this. (NotNull)
1306      */
1307     public FessMessages addErrorsLoginError(String property) {
1308         assertPropertyNotNull(property);
1309         add(property, new UserMessage(ERRORS_login_error));
1310         return this;
1311     }
1312 
1313     /**
1314      * Add the created action message for the key 'errors.sso_login_error' with parameters.
1315      * <pre>
1316      * message: SSO login process failed.
1317      * </pre>
1318      * @param property The property name for the message. (NotNull)
1319      * @return this. (NotNull)
1320      */
1321     public FessMessages addErrorsSsoLoginError(String property) {
1322         assertPropertyNotNull(property);
1323         add(property, new UserMessage(ERRORS_sso_login_error));
1324         return this;
1325     }
1326 
1327     /**
1328      * Add the created action message for the key 'errors.could_not_find_log_file' with parameters.
1329      * <pre>
1330      * message: Could not find {0}.
1331      * </pre>
1332      * @param property The property name for the message. (NotNull)
1333      * @param arg0 The parameter arg0 for message. (NotNull)
1334      * @return this. (NotNull)
1335      */
1336     public FessMessages addErrorsCouldNotFindLogFile(String property, String arg0) {
1337         assertPropertyNotNull(property);
1338         add(property, new UserMessage(ERRORS_could_not_find_log_file, arg0));
1339         return this;
1340     }
1341 
1342     /**
1343      * Add the created action message for the key 'errors.failed_to_start_crawl_process' with parameters.
1344      * <pre>
1345      * message: Failed to start a crawl process.
1346      * </pre>
1347      * @param property The property name for the message. (NotNull)
1348      * @return this. (NotNull)
1349      */
1350     public FessMessages addErrorsFailedToStartCrawlProcess(String property) {
1351         assertPropertyNotNull(property);
1352         add(property, new UserMessage(ERRORS_failed_to_start_crawl_process));
1353         return this;
1354     }
1355 
1356     /**
1357      * Add the created action message for the key 'errors.invalid_design_jsp_file_name' with parameters.
1358      * <pre>
1359      * message: Invalid JSP file.
1360      * </pre>
1361      * @param property The property name for the message. (NotNull)
1362      * @return this. (NotNull)
1363      */
1364     public FessMessages addErrorsInvalidDesignJspFileName(String property) {
1365         assertPropertyNotNull(property);
1366         add(property, new UserMessage(ERRORS_invalid_design_jsp_file_name));
1367         return this;
1368     }
1369 
1370     /**
1371      * Add the created action message for the key 'errors.design_jsp_file_does_not_exist' with parameters.
1372      * <pre>
1373      * message: The JSP file does not exist.
1374      * </pre>
1375      * @param property The property name for the message. (NotNull)
1376      * @return this. (NotNull)
1377      */
1378     public FessMessages addErrorsDesignJspFileDoesNotExist(String property) {
1379         assertPropertyNotNull(property);
1380         add(property, new UserMessage(ERRORS_design_jsp_file_does_not_exist));
1381         return this;
1382     }
1383 
1384     /**
1385      * Add the created action message for the key 'errors.design_file_name_is_not_found' with parameters.
1386      * <pre>
1387      * message: The file name is not specified.
1388      * </pre>
1389      * @param property The property name for the message. (NotNull)
1390      * @return this. (NotNull)
1391      */
1392     public FessMessages addErrorsDesignFileNameIsNotFound(String property) {
1393         assertPropertyNotNull(property);
1394         add(property, new UserMessage(ERRORS_design_file_name_is_not_found));
1395         return this;
1396     }
1397 
1398     /**
1399      * Add the created action message for the key 'errors.failed_to_write_design_image_file' with parameters.
1400      * <pre>
1401      * message: Failed to upload an image file.
1402      * </pre>
1403      * @param property The property name for the message. (NotNull)
1404      * @return this. (NotNull)
1405      */
1406     public FessMessages addErrorsFailedToWriteDesignImageFile(String property) {
1407         assertPropertyNotNull(property);
1408         add(property, new UserMessage(ERRORS_failed_to_write_design_image_file));
1409         return this;
1410     }
1411 
1412     /**
1413      * Add the created action message for the key 'errors.failed_to_update_jsp_file' with parameters.
1414      * <pre>
1415      * message: Failed to update the JSP file.
1416      * </pre>
1417      * @param property The property name for the message. (NotNull)
1418      * @return this. (NotNull)
1419      */
1420     public FessMessages addErrorsFailedToUpdateJspFile(String property) {
1421         assertPropertyNotNull(property);
1422         add(property, new UserMessage(ERRORS_failed_to_update_jsp_file));
1423         return this;
1424     }
1425 
1426     /**
1427      * Add the created action message for the key 'errors.design_file_name_is_invalid' with parameters.
1428      * <pre>
1429      * message: The file name is invalid.
1430      * </pre>
1431      * @param property The property name for the message. (NotNull)
1432      * @return this. (NotNull)
1433      */
1434     public FessMessages addErrorsDesignFileNameIsInvalid(String property) {
1435         assertPropertyNotNull(property);
1436         add(property, new UserMessage(ERRORS_design_file_name_is_invalid));
1437         return this;
1438     }
1439 
1440     /**
1441      * Add the created action message for the key 'errors.design_file_is_unsupported_type' with parameters.
1442      * <pre>
1443      * message: This file type is unsupported.
1444      * </pre>
1445      * @param property The property name for the message. (NotNull)
1446      * @return this. (NotNull)
1447      */
1448     public FessMessages addErrorsDesignFileIsUnsupportedType(String property) {
1449         assertPropertyNotNull(property);
1450         add(property, new UserMessage(ERRORS_design_file_is_unsupported_type));
1451         return this;
1452     }
1453 
1454     /**
1455      * Add the created action message for the key 'errors.failed_to_create_crawling_config_at_wizard' with parameters.
1456      * <pre>
1457      * message: Failed to create a crawling config at a wizard.
1458      * </pre>
1459      * @param property The property name for the message. (NotNull)
1460      * @return this. (NotNull)
1461      */
1462     public FessMessages addErrorsFailedToCreateCrawlingConfigAtWizard(String property) {
1463         assertPropertyNotNull(property);
1464         add(property, new UserMessage(ERRORS_failed_to_create_crawling_config_at_wizard));
1465         return this;
1466     }
1467 
1468     /**
1469      * Add the created action message for the key 'errors.design_editor_disabled' with parameters.
1470      * <pre>
1471      * message: This feature is disabled.
1472      * </pre>
1473      * @param property The property name for the message. (NotNull)
1474      * @return this. (NotNull)
1475      */
1476     public FessMessages addErrorsDesignEditorDisabled(String property) {
1477         assertPropertyNotNull(property);
1478         add(property, new UserMessage(ERRORS_design_editor_disabled));
1479         return this;
1480     }
1481 
1482     /**
1483      * Add the created action message for the key 'errors.not_found_on_file_system' with parameters.
1484      * <pre>
1485      * message: Not found. Cause: {0}
1486      * </pre>
1487      * @param property The property name for the message. (NotNull)
1488      * @param arg0 The parameter arg0 for message. (NotNull)
1489      * @return this. (NotNull)
1490      */
1491     public FessMessages addErrorsNotFoundOnFileSystem(String property, String arg0) {
1492         assertPropertyNotNull(property);
1493         add(property, new UserMessage(ERRORS_not_found_on_file_system, arg0));
1494         return this;
1495     }
1496 
1497     /**
1498      * Add the created action message for the key 'errors.could_not_open_on_system' with parameters.
1499      * <pre>
1500      * message: Could not open {0}.&lt;br&gt;Please check if the file is associated with an application.
1501      * </pre>
1502      * @param property The property name for the message. (NotNull)
1503      * @param arg0 The parameter arg0 for message. (NotNull)
1504      * @return this. (NotNull)
1505      */
1506     public FessMessages addErrorsCouldNotOpenOnSystem(String property, String arg0) {
1507         assertPropertyNotNull(property);
1508         add(property, new UserMessage(ERRORS_could_not_open_on_system, arg0));
1509         return this;
1510     }
1511 
1512     /**
1513      * Add the created action message for the key 'errors.result_size_exceeded' with parameters.
1514      * <pre>
1515      * message: No more results can be displayed.
1516      * </pre>
1517      * @param property The property name for the message. (NotNull)
1518      * @return this. (NotNull)
1519      */
1520     public FessMessages addErrorsResultSizeExceeded(String property) {
1521         assertPropertyNotNull(property);
1522         add(property, new UserMessage(ERRORS_result_size_exceeded));
1523         return this;
1524     }
1525 
1526     /**
1527      * Add the created action message for the key 'errors.target_file_does_not_exist' with parameters.
1528      * <pre>
1529      * message: The file {0} does not exist.
1530      * </pre>
1531      * @param property The property name for the message. (NotNull)
1532      * @param arg0 The parameter arg0 for message. (NotNull)
1533      * @return this. (NotNull)
1534      */
1535     public FessMessages addErrorsTargetFileDoesNotExist(String property, String arg0) {
1536         assertPropertyNotNull(property);
1537         add(property, new UserMessage(ERRORS_target_file_does_not_exist, arg0));
1538         return this;
1539     }
1540 
1541     /**
1542      * Add the created action message for the key 'errors.failed_to_delete_file' with parameters.
1543      * <pre>
1544      * message: Failed to delete the file {0}.
1545      * </pre>
1546      * @param property The property name for the message. (NotNull)
1547      * @param arg0 The parameter arg0 for message. (NotNull)
1548      * @return this. (NotNull)
1549      */
1550     public FessMessages addErrorsFailedToDeleteFile(String property, String arg0) {
1551         assertPropertyNotNull(property);
1552         add(property, new UserMessage(ERRORS_failed_to_delete_file, arg0));
1553         return this;
1554     }
1555 
1556     /**
1557      * Add the created action message for the key 'errors.docid_not_found' with parameters.
1558      * <pre>
1559      * message: Doc ID is not found. Cause: {0}
1560      * </pre>
1561      * @param property The property name for the message. (NotNull)
1562      * @param arg0 The parameter arg0 for message. (NotNull)
1563      * @return this. (NotNull)
1564      */
1565     public FessMessages addErrorsDocidNotFound(String property, String arg0) {
1566         assertPropertyNotNull(property);
1567         add(property, new UserMessage(ERRORS_docid_not_found, arg0));
1568         return this;
1569     }
1570 
1571     /**
1572      * Add the created action message for the key 'errors.document_not_found' with parameters.
1573      * <pre>
1574      * message: The URL for the document ID is not found. Cause: {0}
1575      * </pre>
1576      * @param property The property name for the message. (NotNull)
1577      * @param arg0 The parameter arg0 for message. (NotNull)
1578      * @return this. (NotNull)
1579      */
1580     public FessMessages addErrorsDocumentNotFound(String property, String arg0) {
1581         assertPropertyNotNull(property);
1582         add(property, new UserMessage(ERRORS_document_not_found, arg0));
1583         return this;
1584     }
1585 
1586     /**
1587      * Add the created action message for the key 'errors.not_load_from_server' with parameters.
1588      * <pre>
1589      * message: Could not load from this server. Cause: {0}
1590      * </pre>
1591      * @param property The property name for the message. (NotNull)
1592      * @param arg0 The parameter arg0 for message. (NotNull)
1593      * @return this. (NotNull)
1594      */
1595     public FessMessages addErrorsNotLoadFromServer(String property, String arg0) {
1596         assertPropertyNotNull(property);
1597         add(property, new UserMessage(ERRORS_not_load_from_server, arg0));
1598         return this;
1599     }
1600 
1601     /**
1602      * Add the created action message for the key 'errors.failed_to_start_job' with parameters.
1603      * <pre>
1604      * message: Failed to start a job: {0}.
1605      * </pre>
1606      * @param property The property name for the message. (NotNull)
1607      * @param arg0 The parameter arg0 for message. (NotNull)
1608      * @return this. (NotNull)
1609      */
1610     public FessMessages addErrorsFailedToStartJob(String property, String arg0) {
1611         assertPropertyNotNull(property);
1612         add(property, new UserMessage(ERRORS_failed_to_start_job, arg0));
1613         return this;
1614     }
1615 
1616     /**
1617      * Add the created action message for the key 'errors.failed_to_stop_job' with parameters.
1618      * <pre>
1619      * message: Failed to stop a job: {0}.
1620      * </pre>
1621      * @param property The property name for the message. (NotNull)
1622      * @param arg0 The parameter arg0 for message. (NotNull)
1623      * @return this. (NotNull)
1624      */
1625     public FessMessages addErrorsFailedToStopJob(String property, String arg0) {
1626         assertPropertyNotNull(property);
1627         add(property, new UserMessage(ERRORS_failed_to_stop_job, arg0));
1628         return this;
1629     }
1630 
1631     /**
1632      * Add the created action message for the key 'errors.failed_to_download_synonym_file' with parameters.
1633      * <pre>
1634      * message: Failed to download a synonym file.
1635      * </pre>
1636      * @param property The property name for the message. (NotNull)
1637      * @return this. (NotNull)
1638      */
1639     public FessMessages addErrorsFailedToDownloadSynonymFile(String property) {
1640         assertPropertyNotNull(property);
1641         add(property, new UserMessage(ERRORS_failed_to_download_synonym_file));
1642         return this;
1643     }
1644 
1645     /**
1646      * Add the created action message for the key 'errors.failed_to_upload_synonym_file' with parameters.
1647      * <pre>
1648      * message: Failed to upload a synonym file.
1649      * </pre>
1650      * @param property The property name for the message. (NotNull)
1651      * @return this. (NotNull)
1652      */
1653     public FessMessages addErrorsFailedToUploadSynonymFile(String property) {
1654         assertPropertyNotNull(property);
1655         add(property, new UserMessage(ERRORS_failed_to_upload_synonym_file));
1656         return this;
1657     }
1658 
1659     /**
1660      * Add the created action message for the key 'errors.failed_to_download_stemmeroverride_file' with parameters.
1661      * <pre>
1662      * message: Failed to download a stemmer override file.
1663      * </pre>
1664      * @param property The property name for the message. (NotNull)
1665      * @return this. (NotNull)
1666      */
1667     public FessMessages addErrorsFailedToDownloadStemmeroverrideFile(String property) {
1668         assertPropertyNotNull(property);
1669         add(property, new UserMessage(ERRORS_failed_to_download_stemmeroverride_file));
1670         return this;
1671     }
1672 
1673     /**
1674      * Add the created action message for the key 'errors.failed_to_upload_stemmeroverride_file' with parameters.
1675      * <pre>
1676      * message: Failed to upload a stemmer override file.
1677      * </pre>
1678      * @param property The property name for the message. (NotNull)
1679      * @return this. (NotNull)
1680      */
1681     public FessMessages addErrorsFailedToUploadStemmeroverrideFile(String property) {
1682         assertPropertyNotNull(property);
1683         add(property, new UserMessage(ERRORS_failed_to_upload_stemmeroverride_file));
1684         return this;
1685     }
1686 
1687     /**
1688      * Add the created action message for the key 'errors.failed_to_download_kuromoji_file' with parameters.
1689      * <pre>
1690      * message: Failed to download a Kuromoji file.
1691      * </pre>
1692      * @param property The property name for the message. (NotNull)
1693      * @return this. (NotNull)
1694      */
1695     public FessMessages addErrorsFailedToDownloadKuromojiFile(String property) {
1696         assertPropertyNotNull(property);
1697         add(property, new UserMessage(ERRORS_failed_to_download_kuromoji_file));
1698         return this;
1699     }
1700 
1701     /**
1702      * Add the created action message for the key 'errors.failed_to_upload_kuromoji_file' with parameters.
1703      * <pre>
1704      * message: Failed to upload a Kuromoji file.
1705      * </pre>
1706      * @param property The property name for the message. (NotNull)
1707      * @return this. (NotNull)
1708      */
1709     public FessMessages addErrorsFailedToUploadKuromojiFile(String property) {
1710         assertPropertyNotNull(property);
1711         add(property, new UserMessage(ERRORS_failed_to_upload_kuromoji_file));
1712         return this;
1713     }
1714 
1715     /**
1716      * Add the created action message for the key 'errors.failed_to_download_protwords_file' with parameters.
1717      * <pre>
1718      * message: Failed to download a protwords file.
1719      * </pre>
1720      * @param property The property name for the message. (NotNull)
1721      * @return this. (NotNull)
1722      */
1723     public FessMessages addErrorsFailedToDownloadProtwordsFile(String property) {
1724         assertPropertyNotNull(property);
1725         add(property, new UserMessage(ERRORS_failed_to_download_protwords_file));
1726         return this;
1727     }
1728 
1729     /**
1730      * Add the created action message for the key 'errors.failed_to_upload_protwords_file' with parameters.
1731      * <pre>
1732      * message: Failed to upload a protwords file.
1733      * </pre>
1734      * @param property The property name for the message. (NotNull)
1735      * @return this. (NotNull)
1736      */
1737     public FessMessages addErrorsFailedToUploadProtwordsFile(String property) {
1738         assertPropertyNotNull(property);
1739         add(property, new UserMessage(ERRORS_failed_to_upload_protwords_file));
1740         return this;
1741     }
1742 
1743     /**
1744      * Add the created action message for the key 'errors.failed_to_download_stopwords_file' with parameters.
1745      * <pre>
1746      * message: Failed to download a stopwords file.
1747      * </pre>
1748      * @param property The property name for the message. (NotNull)
1749      * @return this. (NotNull)
1750      */
1751     public FessMessages addErrorsFailedToDownloadStopwordsFile(String property) {
1752         assertPropertyNotNull(property);
1753         add(property, new UserMessage(ERRORS_failed_to_download_stopwords_file));
1754         return this;
1755     }
1756 
1757     /**
1758      * Add the created action message for the key 'errors.failed_to_upload_stopwords_file' with parameters.
1759      * <pre>
1760      * message: Failed to upload a stopwords file.
1761      * </pre>
1762      * @param property The property name for the message. (NotNull)
1763      * @return this. (NotNull)
1764      */
1765     public FessMessages addErrorsFailedToUploadStopwordsFile(String property) {
1766         assertPropertyNotNull(property);
1767         add(property, new UserMessage(ERRORS_failed_to_upload_stopwords_file));
1768         return this;
1769     }
1770 
1771     /**
1772      * Add the created action message for the key 'errors.failed_to_download_elevate_file' with parameters.
1773      * <pre>
1774      * message: Failed to download an elevate word file.
1775      * </pre>
1776      * @param property The property name for the message. (NotNull)
1777      * @return this. (NotNull)
1778      */
1779     public FessMessages addErrorsFailedToDownloadElevateFile(String property) {
1780         assertPropertyNotNull(property);
1781         add(property, new UserMessage(ERRORS_failed_to_download_elevate_file));
1782         return this;
1783     }
1784 
1785     /**
1786      * Add the created action message for the key 'errors.failed_to_upload_elevate_file' with parameters.
1787      * <pre>
1788      * message: Failed to upload an elevate word file.
1789      * </pre>
1790      * @param property The property name for the message. (NotNull)
1791      * @return this. (NotNull)
1792      */
1793     public FessMessages addErrorsFailedToUploadElevateFile(String property) {
1794         assertPropertyNotNull(property);
1795         add(property, new UserMessage(ERRORS_failed_to_upload_elevate_file));
1796         return this;
1797     }
1798 
1799     /**
1800      * Add the created action message for the key 'errors.failed_to_download_badword_file' with parameters.
1801      * <pre>
1802      * message: Failed to download a bad word file.
1803      * </pre>
1804      * @param property The property name for the message. (NotNull)
1805      * @return this. (NotNull)
1806      */
1807     public FessMessages addErrorsFailedToDownloadBadwordFile(String property) {
1808         assertPropertyNotNull(property);
1809         add(property, new UserMessage(ERRORS_failed_to_download_badword_file));
1810         return this;
1811     }
1812 
1813     /**
1814      * Add the created action message for the key 'errors.failed_to_upload_badword_file' with parameters.
1815      * <pre>
1816      * message: Failed to upload a bad word file.
1817      * </pre>
1818      * @param property The property name for the message. (NotNull)
1819      * @return this. (NotNull)
1820      */
1821     public FessMessages addErrorsFailedToUploadBadwordFile(String property) {
1822         assertPropertyNotNull(property);
1823         add(property, new UserMessage(ERRORS_failed_to_upload_badword_file));
1824         return this;
1825     }
1826 
1827     /**
1828      * Add the created action message for the key 'errors.failed_to_download_mapping_file' with parameters.
1829      * <pre>
1830      * message: Failed to download a mapping file.
1831      * </pre>
1832      * @param property The property name for the message. (NotNull)
1833      * @return this. (NotNull)
1834      */
1835     public FessMessages addErrorsFailedToDownloadMappingFile(String property) {
1836         assertPropertyNotNull(property);
1837         add(property, new UserMessage(ERRORS_failed_to_download_mapping_file));
1838         return this;
1839     }
1840 
1841     /**
1842      * Add the created action message for the key 'errors.failed_to_upload_mapping_file' with parameters.
1843      * <pre>
1844      * message: Failed to upload a mapping file.
1845      * </pre>
1846      * @param property The property name for the message. (NotNull)
1847      * @return this. (NotNull)
1848      */
1849     public FessMessages addErrorsFailedToUploadMappingFile(String property) {
1850         assertPropertyNotNull(property);
1851         add(property, new UserMessage(ERRORS_failed_to_upload_mapping_file));
1852         return this;
1853     }
1854 
1855     /**
1856      * Add the created action message for the key 'errors.invalid_kuromoji_token' with parameters.
1857      * <pre>
1858      * message: {0} is invalid as a token.
1859      * </pre>
1860      * @param property The property name for the message. (NotNull)
1861      * @param arg0 The parameter arg0 for message. (NotNull)
1862      * @return this. (NotNull)
1863      */
1864     public FessMessages addErrorsInvalidKuromojiToken(String property, String arg0) {
1865         assertPropertyNotNull(property);
1866         add(property, new UserMessage(ERRORS_invalid_kuromoji_token, arg0));
1867         return this;
1868     }
1869 
1870     /**
1871      * Add the created action message for the key 'errors.invalid_kuromoji_segmentation' with parameters.
1872      * <pre>
1873      * message: The number of segmentation for {0} and {1} is different.
1874      * </pre>
1875      * @param property The property name for the message. (NotNull)
1876      * @param arg0 The parameter arg0 for message. (NotNull)
1877      * @param arg1 The parameter arg1 for message. (NotNull)
1878      * @return this. (NotNull)
1879      */
1880     public FessMessages addErrorsInvalidKuromojiSegmentation(String property, String arg0, String arg1) {
1881         assertPropertyNotNull(property);
1882         add(property, new UserMessage(ERRORS_invalid_kuromoji_segmentation, arg0, arg1));
1883         return this;
1884     }
1885 
1886     /**
1887      * Add the created action message for the key 'errors.invalid_str_is_included' with parameters.
1888      * <pre>
1889      * message: {1} is invalid for {0}.
1890      * </pre>
1891      * @param property The property name for the message. (NotNull)
1892      * @param arg0 The parameter arg0 for message. (NotNull)
1893      * @param arg1 The parameter arg1 for message. (NotNull)
1894      * @return this. (NotNull)
1895      */
1896     public FessMessages addErrorsInvalidStrIsIncluded(String property, String arg0, String arg1) {
1897         assertPropertyNotNull(property);
1898         add(property, new UserMessage(ERRORS_invalid_str_is_included, arg0, arg1));
1899         return this;
1900     }
1901 
1902     /**
1903      * Add the created action message for the key 'errors.blank_password' with parameters.
1904      * <pre>
1905      * message: Password is required.
1906      * </pre>
1907      * @param property The property name for the message. (NotNull)
1908      * @return this. (NotNull)
1909      */
1910     public FessMessages addErrorsBlankPassword(String property) {
1911         assertPropertyNotNull(property);
1912         add(property, new UserMessage(ERRORS_blank_password));
1913         return this;
1914     }
1915 
1916     /**
1917      * Add the created action message for the key 'errors.password_length' with parameters.
1918      * <pre>
1919      * message: Password must be at least {0} characters long.
1920      * </pre>
1921      * @param property The property name for the message. (NotNull)
1922      * @param arg0 The parameter arg0 for message. (NotNull)
1923      * @return this. (NotNull)
1924      */
1925     public FessMessages addErrorsPasswordLength(String property, String arg0) {
1926         assertPropertyNotNull(property);
1927         add(property, new UserMessage(ERRORS_password_length, arg0));
1928         return this;
1929     }
1930 
1931     /**
1932      * Add the created action message for the key 'errors.password_no_uppercase' with parameters.
1933      * <pre>
1934      * message: Password must contain at least one uppercase letter.
1935      * </pre>
1936      * @param property The property name for the message. (NotNull)
1937      * @return this. (NotNull)
1938      */
1939     public FessMessages addErrorsPasswordNoUppercase(String property) {
1940         assertPropertyNotNull(property);
1941         add(property, new UserMessage(ERRORS_password_no_uppercase));
1942         return this;
1943     }
1944 
1945     /**
1946      * Add the created action message for the key 'errors.password_no_lowercase' with parameters.
1947      * <pre>
1948      * message: Password must contain at least one lowercase letter.
1949      * </pre>
1950      * @param property The property name for the message. (NotNull)
1951      * @return this. (NotNull)
1952      */
1953     public FessMessages addErrorsPasswordNoLowercase(String property) {
1954         assertPropertyNotNull(property);
1955         add(property, new UserMessage(ERRORS_password_no_lowercase));
1956         return this;
1957     }
1958 
1959     /**
1960      * Add the created action message for the key 'errors.password_no_digit' with parameters.
1961      * <pre>
1962      * message: Password must contain at least one digit.
1963      * </pre>
1964      * @param property The property name for the message. (NotNull)
1965      * @return this. (NotNull)
1966      */
1967     public FessMessages addErrorsPasswordNoDigit(String property) {
1968         assertPropertyNotNull(property);
1969         add(property, new UserMessage(ERRORS_password_no_digit));
1970         return this;
1971     }
1972 
1973     /**
1974      * Add the created action message for the key 'errors.password_no_special_char' with parameters.
1975      * <pre>
1976      * message: Password must contain at least one special character.
1977      * </pre>
1978      * @param property The property name for the message. (NotNull)
1979      * @return this. (NotNull)
1980      */
1981     public FessMessages addErrorsPasswordNoSpecialChar(String property) {
1982         assertPropertyNotNull(property);
1983         add(property, new UserMessage(ERRORS_password_no_special_char));
1984         return this;
1985     }
1986 
1987     /**
1988      * Add the created action message for the key 'errors.password_is_blacklisted' with parameters.
1989      * <pre>
1990      * message: Password is not allowed. Please choose a different password.
1991      * </pre>
1992      * @param property The property name for the message. (NotNull)
1993      * @return this. (NotNull)
1994      */
1995     public FessMessages addErrorsPasswordIsBlacklisted(String property) {
1996         assertPropertyNotNull(property);
1997         add(property, new UserMessage(ERRORS_password_is_blacklisted));
1998         return this;
1999     }
2000 
2001     /**
2002      * Add the created action message for the key 'errors.invalid_confirm_password' with parameters.
2003      * <pre>
2004      * message: Does not match a confirmation password.
2005      * </pre>
2006      * @param property The property name for the message. (NotNull)
2007      * @return this. (NotNull)
2008      */
2009     public FessMessages addErrorsInvalidConfirmPassword(String property) {
2010         assertPropertyNotNull(property);
2011         add(property, new UserMessage(ERRORS_invalid_confirm_password));
2012         return this;
2013     }
2014 
2015     /**
2016      * Add the created action message for the key 'errors.cannot_delete_doc_because_of_running' with parameters.
2017      * <pre>
2018      * message: A crawler is running. You cannot delete documents.
2019      * </pre>
2020      * @param property The property name for the message. (NotNull)
2021      * @return this. (NotNull)
2022      */
2023     public FessMessages addErrorsCannotDeleteDocBecauseOfRunning(String property) {
2024         assertPropertyNotNull(property);
2025         add(property, new UserMessage(ERRORS_cannot_delete_doc_because_of_running));
2026         return this;
2027     }
2028 
2029     /**
2030      * Add the created action message for the key 'errors.failed_to_delete_doc_in_admin' with parameters.
2031      * <pre>
2032      * message: Failed to delete a document.
2033      * </pre>
2034      * @param property The property name for the message. (NotNull)
2035      * @return this. (NotNull)
2036      */
2037     public FessMessages addErrorsFailedToDeleteDocInAdmin(String property) {
2038         assertPropertyNotNull(property);
2039         add(property, new UserMessage(ERRORS_failed_to_delete_doc_in_admin));
2040         return this;
2041     }
2042 
2043     /**
2044      * Add the created action message for the key 'errors.failed_to_send_testmail' with parameters.
2045      * <pre>
2046      * message: Failed to send a test mail.
2047      * </pre>
2048      * @param property The property name for the message. (NotNull)
2049      * @return this. (NotNull)
2050      */
2051     public FessMessages addErrorsFailedToSendTestmail(String property) {
2052         assertPropertyNotNull(property);
2053         add(property, new UserMessage(ERRORS_failed_to_send_testmail));
2054         return this;
2055     }
2056 
2057     /**
2058      * Add the created action message for the key 'errors.invalid_query_unknown' with parameters.
2059      * <pre>
2060      * message: The specified query has an unknown condition.
2061      * </pre>
2062      * @param property The property name for the message. (NotNull)
2063      * @return this. (NotNull)
2064      */
2065     public FessMessages addErrorsInvalidQueryUnknown(String property) {
2066         assertPropertyNotNull(property);
2067         add(property, new UserMessage(ERRORS_invalid_query_unknown));
2068         return this;
2069     }
2070 
2071     /**
2072      * Add the created action message for the key 'errors.invalid_query_parse_error' with parameters.
2073      * <pre>
2074      * message: The given query is invalid.
2075      * </pre>
2076      * @param property The property name for the message. (NotNull)
2077      * @return this. (NotNull)
2078      */
2079     public FessMessages addErrorsInvalidQueryParseError(String property) {
2080         assertPropertyNotNull(property);
2081         add(property, new UserMessage(ERRORS_invalid_query_parse_error));
2082         return this;
2083     }
2084 
2085     /**
2086      * Add the created action message for the key 'errors.invalid_query_sort_value' with parameters.
2087      * <pre>
2088      * message: The specified sort {0} is invalid.
2089      * </pre>
2090      * @param property The property name for the message. (NotNull)
2091      * @param arg0 The parameter arg0 for message. (NotNull)
2092      * @return this. (NotNull)
2093      */
2094     public FessMessages addErrorsInvalidQuerySortValue(String property, String arg0) {
2095         assertPropertyNotNull(property);
2096         add(property, new UserMessage(ERRORS_invalid_query_sort_value, arg0));
2097         return this;
2098     }
2099 
2100     /**
2101      * Add the created action message for the key 'errors.invalid_query_unsupported_sort_field' with parameters.
2102      * <pre>
2103      * message: The specified sort {0} is unsupported.
2104      * </pre>
2105      * @param property The property name for the message. (NotNull)
2106      * @param arg0 The parameter arg0 for message. (NotNull)
2107      * @return this. (NotNull)
2108      */
2109     public FessMessages addErrorsInvalidQueryUnsupportedSortField(String property, String arg0) {
2110         assertPropertyNotNull(property);
2111         add(property, new UserMessage(ERRORS_invalid_query_unsupported_sort_field, arg0));
2112         return this;
2113     }
2114 
2115     /**
2116      * Add the created action message for the key 'errors.invalid_query_unsupported_sort_order' with parameters.
2117      * <pre>
2118      * message: The specified sort order {0} is unsupported.
2119      * </pre>
2120      * @param property The property name for the message. (NotNull)
2121      * @param arg0 The parameter arg0 for message. (NotNull)
2122      * @return this. (NotNull)
2123      */
2124     public FessMessages addErrorsInvalidQueryUnsupportedSortOrder(String property, String arg0) {
2125         assertPropertyNotNull(property);
2126         add(property, new UserMessage(ERRORS_invalid_query_unsupported_sort_order, arg0));
2127         return this;
2128     }
2129 
2130     /**
2131      * Add the created action message for the key 'errors.invalid_query_cannot_process' with parameters.
2132      * <pre>
2133      * message: Could not process the specified query.
2134      * </pre>
2135      * @param property The property name for the message. (NotNull)
2136      * @return this. (NotNull)
2137      */
2138     public FessMessages addErrorsInvalidQueryCannotProcess(String property) {
2139         assertPropertyNotNull(property);
2140         add(property, new UserMessage(ERRORS_invalid_query_cannot_process));
2141         return this;
2142     }
2143 
2144     /**
2145      * Add the created action message for the key 'errors.crud_invalid_mode' with parameters.
2146      * <pre>
2147      * message: The mode is incorrect. (not {0}, but {1})
2148      * </pre>
2149      * @param property The property name for the message. (NotNull)
2150      * @param arg0 The parameter arg0 for message. (NotNull)
2151      * @param arg1 The parameter arg1 for message. (NotNull)
2152      * @return this. (NotNull)
2153      */
2154     public FessMessages addErrorsCrudInvalidMode(String property, String arg0, String arg1) {
2155         assertPropertyNotNull(property);
2156         add(property, new UserMessage(ERRORS_crud_invalid_mode, arg0, arg1));
2157         return this;
2158     }
2159 
2160     /**
2161      * Add the created action message for the key 'errors.crud_failed_to_create_instance' with parameters.
2162      * <pre>
2163      * message: Failed to create a new data.
2164      * </pre>
2165      * @param property The property name for the message. (NotNull)
2166      * @return this. (NotNull)
2167      */
2168     public FessMessages addErrorsCrudFailedToCreateInstance(String property) {
2169         assertPropertyNotNull(property);
2170         add(property, new UserMessage(ERRORS_crud_failed_to_create_instance));
2171         return this;
2172     }
2173 
2174     /**
2175      * Add the created action message for the key 'errors.crud_failed_to_create_crud_table' with parameters.
2176      * <pre>
2177      * message: Failed to create a new data. ({0})
2178      * </pre>
2179      * @param property The property name for the message. (NotNull)
2180      * @param arg0 The parameter arg0 for message. (NotNull)
2181      * @return this. (NotNull)
2182      */
2183     public FessMessages addErrorsCrudFailedToCreateCrudTable(String property, String arg0) {
2184         assertPropertyNotNull(property);
2185         add(property, new UserMessage(ERRORS_crud_failed_to_create_crud_table, arg0));
2186         return this;
2187     }
2188 
2189     /**
2190      * Add the created action message for the key 'errors.crud_failed_to_update_crud_table' with parameters.
2191      * <pre>
2192      * message: Failed to update the data. ({0})
2193      * </pre>
2194      * @param property The property name for the message. (NotNull)
2195      * @param arg0 The parameter arg0 for message. (NotNull)
2196      * @return this. (NotNull)
2197      */
2198     public FessMessages addErrorsCrudFailedToUpdateCrudTable(String property, String arg0) {
2199         assertPropertyNotNull(property);
2200         add(property, new UserMessage(ERRORS_crud_failed_to_update_crud_table, arg0));
2201         return this;
2202     }
2203 
2204     /**
2205      * Add the created action message for the key 'errors.crud_failed_to_delete_crud_table' with parameters.
2206      * <pre>
2207      * message: Failed to delete the data. ({0})
2208      * </pre>
2209      * @param property The property name for the message. (NotNull)
2210      * @param arg0 The parameter arg0 for message. (NotNull)
2211      * @return this. (NotNull)
2212      */
2213     public FessMessages addErrorsCrudFailedToDeleteCrudTable(String property, String arg0) {
2214         assertPropertyNotNull(property);
2215         add(property, new UserMessage(ERRORS_crud_failed_to_delete_crud_table, arg0));
2216         return this;
2217     }
2218 
2219     /**
2220      * Add the created action message for the key 'errors.crud_could_not_find_crud_table' with parameters.
2221      * <pre>
2222      * message: The data {0} is not found.
2223      * </pre>
2224      * @param property The property name for the message. (NotNull)
2225      * @param arg0 The parameter arg0 for message. (NotNull)
2226      * @return this. (NotNull)
2227      */
2228     public FessMessages addErrorsCrudCouldNotFindCrudTable(String property, String arg0) {
2229         assertPropertyNotNull(property);
2230         add(property, new UserMessage(ERRORS_crud_could_not_find_crud_table, arg0));
2231         return this;
2232     }
2233 
2234     /**
2235      * Add the created action message for the key 'errors.could_not_find_backup_index' with parameters.
2236      * <pre>
2237      * message: Could not find any backup index.
2238      * </pre>
2239      * @param property The property name for the message. (NotNull)
2240      * @return this. (NotNull)
2241      */
2242     public FessMessages addErrorsCouldNotFindBackupIndex(String property) {
2243         assertPropertyNotNull(property);
2244         add(property, new UserMessage(ERRORS_could_not_find_backup_index));
2245         return this;
2246     }
2247 
2248     /**
2249      * Add the created action message for the key 'errors.no_user_for_changing_password' with parameters.
2250      * <pre>
2251      * message: The current password is not correct.
2252      * </pre>
2253      * @param property The property name for the message. (NotNull)
2254      * @return this. (NotNull)
2255      */
2256     public FessMessages addErrorsNoUserForChangingPassword(String property) {
2257         assertPropertyNotNull(property);
2258         add(property, new UserMessage(ERRORS_no_user_for_changing_password));
2259         return this;
2260     }
2261 
2262     /**
2263      * Add the created action message for the key 'errors.failed_to_change_password' with parameters.
2264      * <pre>
2265      * message: Failed to change your password.
2266      * </pre>
2267      * @param property The property name for the message. (NotNull)
2268      * @return this. (NotNull)
2269      */
2270     public FessMessages addErrorsFailedToChangePassword(String property) {
2271         assertPropertyNotNull(property);
2272         add(property, new UserMessage(ERRORS_failed_to_change_password));
2273         return this;
2274     }
2275 
2276     /**
2277      * Add the created action message for the key 'errors.unknown_version_for_upgrade' with parameters.
2278      * <pre>
2279      * message: Unknown version for upgrade.
2280      * </pre>
2281      * @param property The property name for the message. (NotNull)
2282      * @return this. (NotNull)
2283      */
2284     public FessMessages addErrorsUnknownVersionForUpgrade(String property) {
2285         assertPropertyNotNull(property);
2286         add(property, new UserMessage(ERRORS_unknown_version_for_upgrade));
2287         return this;
2288     }
2289 
2290     /**
2291      * Add the created action message for the key 'errors.failed_to_upgrade_from' with parameters.
2292      * <pre>
2293      * message: Failed to upgrade from {0}.
2294      * </pre>
2295      * @param property The property name for the message. (NotNull)
2296      * @param arg0 The parameter arg0 for message. (NotNull)
2297      * @return this. (NotNull)
2298      */
2299     public FessMessages addErrorsFailedToUpgradeFrom(String property, String arg0) {
2300         assertPropertyNotNull(property);
2301         add(property, new UserMessage(ERRORS_failed_to_upgrade_from, arg0));
2302         return this;
2303     }
2304 
2305     /**
2306      * Add the created action message for the key 'errors.failed_to_reindex' with parameters.
2307      * <pre>
2308      * message: Failed to start re-indexing from {0} to {1}.
2309      * </pre>
2310      * @param property The property name for the message. (NotNull)
2311      * @param arg0 The parameter arg0 for message. (NotNull)
2312      * @param arg1 The parameter arg1 for message. (NotNull)
2313      * @return this. (NotNull)
2314      */
2315     public FessMessages addErrorsFailedToReindex(String property, String arg0, String arg1) {
2316         assertPropertyNotNull(property);
2317         add(property, new UserMessage(ERRORS_failed_to_reindex, arg0, arg1));
2318         return this;
2319     }
2320 
2321     /**
2322      * Add the created action message for the key 'errors.failed_to_rebuild_config_index' with parameters.
2323      * <pre>
2324      * message: Failed to rebuild config indices.
2325      * </pre>
2326      * @param property The property name for the message. (NotNull)
2327      * @return this. (NotNull)
2328      */
2329     public FessMessages addErrorsFailedToRebuildConfigIndex(String property) {
2330         assertPropertyNotNull(property);
2331         add(property, new UserMessage(ERRORS_failed_to_rebuild_config_index));
2332         return this;
2333     }
2334 
2335     /**
2336      * Add the created action message for the key 'errors.no_target_index_selected' with parameters.
2337      * <pre>
2338      * message: Please select at least one target index to rebuild.
2339      * </pre>
2340      * @param property The property name for the message. (NotNull)
2341      * @return this. (NotNull)
2342      */
2343     public FessMessages addErrorsNoTargetIndexSelected(String property) {
2344         assertPropertyNotNull(property);
2345         add(property, new UserMessage(ERRORS_no_target_index_selected));
2346         return this;
2347     }
2348 
2349     /**
2350      * Add the created action message for the key 'errors.operation_already_running' with parameters.
2351      * <pre>
2352      * message: The operation is already running on {0}.
2353      * </pre>
2354      * @param property The property name for the message. (NotNull)
2355      * @param arg0 The parameter arg0 for message. (NotNull)
2356      * @return this. (NotNull)
2357      */
2358     public FessMessages addErrorsOperationAlreadyRunning(String property, String arg0) {
2359         assertPropertyNotNull(property);
2360         add(property, new UserMessage(ERRORS_operation_already_running, arg0));
2361         return this;
2362     }
2363 
2364     /**
2365      * Add the created action message for the key 'errors.failed_to_read_request_file' with parameters.
2366      * <pre>
2367      * message: Failed to read a request file: {0}
2368      * </pre>
2369      * @param property The property name for the message. (NotNull)
2370      * @param arg0 The parameter arg0 for message. (NotNull)
2371      * @return this. (NotNull)
2372      */
2373     public FessMessages addErrorsFailedToReadRequestFile(String property, String arg0) {
2374         assertPropertyNotNull(property);
2375         add(property, new UserMessage(ERRORS_failed_to_read_request_file, arg0));
2376         return this;
2377     }
2378 
2379     /**
2380      * Add the created action message for the key 'errors.invalid_header_for_request_file' with parameters.
2381      * <pre>
2382      * message: Invalid header line: {0}
2383      * </pre>
2384      * @param property The property name for the message. (NotNull)
2385      * @param arg0 The parameter arg0 for message. (NotNull)
2386      * @return this. (NotNull)
2387      */
2388     public FessMessages addErrorsInvalidHeaderForRequestFile(String property, String arg0) {
2389         assertPropertyNotNull(property);
2390         add(property, new UserMessage(ERRORS_invalid_header_for_request_file, arg0));
2391         return this;
2392     }
2393 
2394     /**
2395      * Add the created action message for the key 'errors.could_not_delete_logged_in_user' with parameters.
2396      * <pre>
2397      * message: You cannot delete a user who is logged in.
2398      * </pre>
2399      * @param property The property name for the message. (NotNull)
2400      * @return this. (NotNull)
2401      */
2402     public FessMessages addErrorsCouldNotDeleteLoggedInUser(String property) {
2403         assertPropertyNotNull(property);
2404         add(property, new UserMessage(ERRORS_could_not_delete_logged_in_user));
2405         return this;
2406     }
2407 
2408     /**
2409      * Add the created action message for the key 'errors.unauthorized_request' with parameters.
2410      * <pre>
2411      * message: Unauthorized request.
2412      * </pre>
2413      * @param property The property name for the message. (NotNull)
2414      * @return this. (NotNull)
2415      */
2416     public FessMessages addErrorsUnauthorizedRequest(String property) {
2417         assertPropertyNotNull(property);
2418         add(property, new UserMessage(ERRORS_unauthorized_request));
2419         return this;
2420     }
2421 
2422     /**
2423      * Add the created action message for the key 'errors.failed_to_print_thread_dump' with parameters.
2424      * <pre>
2425      * message: Failed to print a thread dump.
2426      * </pre>
2427      * @param property The property name for the message. (NotNull)
2428      * @return this. (NotNull)
2429      */
2430     public FessMessages addErrorsFailedToPrintThreadDump(String property) {
2431         assertPropertyNotNull(property);
2432         add(property, new UserMessage(ERRORS_failed_to_print_thread_dump));
2433         return this;
2434     }
2435 
2436     /**
2437      * Add the created action message for the key 'errors.file_is_not_supported' with parameters.
2438      * <pre>
2439      * message: {0} is not supported.
2440      * </pre>
2441      * @param property The property name for the message. (NotNull)
2442      * @param arg0 The parameter arg0 for message. (NotNull)
2443      * @return this. (NotNull)
2444      */
2445     public FessMessages addErrorsFileIsNotSupported(String property, String arg0) {
2446         assertPropertyNotNull(property);
2447         add(property, new UserMessage(ERRORS_file_is_not_supported, arg0));
2448         return this;
2449     }
2450 
2451     /**
2452      * Add the created action message for the key 'errors.plugin_file_is_not_found' with parameters.
2453      * <pre>
2454      * message: {0} is not found.
2455      * </pre>
2456      * @param property The property name for the message. (NotNull)
2457      * @param arg0 The parameter arg0 for message. (NotNull)
2458      * @return this. (NotNull)
2459      */
2460     public FessMessages addErrorsPluginFileIsNotFound(String property, String arg0) {
2461         assertPropertyNotNull(property);
2462         add(property, new UserMessage(ERRORS_plugin_file_is_not_found, arg0));
2463         return this;
2464     }
2465 
2466     /**
2467      * Add the created action message for the key 'errors.failed_to_install_plugin' with parameters.
2468      * <pre>
2469      * message: Failed to install {0}.
2470      * </pre>
2471      * @param property The property name for the message. (NotNull)
2472      * @param arg0 The parameter arg0 for message. (NotNull)
2473      * @return this. (NotNull)
2474      */
2475     public FessMessages addErrorsFailedToInstallPlugin(String property, String arg0) {
2476         assertPropertyNotNull(property);
2477         add(property, new UserMessage(ERRORS_failed_to_install_plugin, arg0));
2478         return this;
2479     }
2480 
2481     /**
2482      * Add the created action message for the key 'errors.failed_to_find_plugins' with parameters.
2483      * <pre>
2484      * message: Could not find available plugins.
2485      * </pre>
2486      * @param property The property name for the message. (NotNull)
2487      * @return this. (NotNull)
2488      */
2489     public FessMessages addErrorsFailedToFindPlugins(String property) {
2490         assertPropertyNotNull(property);
2491         add(property, new UserMessage(ERRORS_failed_to_find_plugins));
2492         return this;
2493     }
2494 
2495     /**
2496      * Add the created action message for the key 'errors.failed_to_process_sso_request' with parameters.
2497      * <pre>
2498      * message: Failed to process a request: {0}
2499      * </pre>
2500      * @param property The property name for the message. (NotNull)
2501      * @param arg0 The parameter arg0 for message. (NotNull)
2502      * @return this. (NotNull)
2503      */
2504     public FessMessages addErrorsFailedToProcessSsoRequest(String property, String arg0) {
2505         assertPropertyNotNull(property);
2506         add(property, new UserMessage(ERRORS_failed_to_process_sso_request, arg0));
2507         return this;
2508     }
2509 
2510     /**
2511      * Add the created action message for the key 'errors.property_required' with parameters.
2512      * <pre>
2513      * message: {0} is required.
2514      * </pre>
2515      * @param property The property name for the message. (NotNull)
2516      * @param arg0 The parameter arg0 for message. (NotNull)
2517      * @return this. (NotNull)
2518      */
2519     public FessMessages addErrorsPropertyRequired(String property, String arg0) {
2520         assertPropertyNotNull(property);
2521         add(property, new UserMessage(ERRORS_property_required, arg0));
2522         return this;
2523     }
2524 
2525     /**
2526      * Add the created action message for the key 'errors.property_type_integer' with parameters.
2527      * <pre>
2528      * message: {0} must be an integer.
2529      * </pre>
2530      * @param property The property name for the message. (NotNull)
2531      * @param arg0 The parameter arg0 for message. (NotNull)
2532      * @return this. (NotNull)
2533      */
2534     public FessMessages addErrorsPropertyTypeInteger(String property, String arg0) {
2535         assertPropertyNotNull(property);
2536         add(property, new UserMessage(ERRORS_property_type_integer, arg0));
2537         return this;
2538     }
2539 
2540     /**
2541      * Add the created action message for the key 'errors.property_type_long' with parameters.
2542      * <pre>
2543      * message: {0} must be a long.
2544      * </pre>
2545      * @param property The property name for the message. (NotNull)
2546      * @param arg0 The parameter arg0 for message. (NotNull)
2547      * @return this. (NotNull)
2548      */
2549     public FessMessages addErrorsPropertyTypeLong(String property, String arg0) {
2550         assertPropertyNotNull(property);
2551         add(property, new UserMessage(ERRORS_property_type_long, arg0));
2552         return this;
2553     }
2554 
2555     /**
2556      * Add the created action message for the key 'errors.property_type_float' with parameters.
2557      * <pre>
2558      * message: {0} must be a float.
2559      * </pre>
2560      * @param property The property name for the message. (NotNull)
2561      * @param arg0 The parameter arg0 for message. (NotNull)
2562      * @return this. (NotNull)
2563      */
2564     public FessMessages addErrorsPropertyTypeFloat(String property, String arg0) {
2565         assertPropertyNotNull(property);
2566         add(property, new UserMessage(ERRORS_property_type_float, arg0));
2567         return this;
2568     }
2569 
2570     /**
2571      * Add the created action message for the key 'errors.property_type_double' with parameters.
2572      * <pre>
2573      * message: {0} must be a double.
2574      * </pre>
2575      * @param property The property name for the message. (NotNull)
2576      * @param arg0 The parameter arg0 for message. (NotNull)
2577      * @return this. (NotNull)
2578      */
2579     public FessMessages addErrorsPropertyTypeDouble(String property, String arg0) {
2580         assertPropertyNotNull(property);
2581         add(property, new UserMessage(ERRORS_property_type_double, arg0));
2582         return this;
2583     }
2584 
2585     /**
2586      * Add the created action message for the key 'errors.property_type_date' with parameters.
2587      * <pre>
2588      * message: {0} must be a date.
2589      * </pre>
2590      * @param property The property name for the message. (NotNull)
2591      * @param arg0 The parameter arg0 for message. (NotNull)
2592      * @return this. (NotNull)
2593      */
2594     public FessMessages addErrorsPropertyTypeDate(String property, String arg0) {
2595         assertPropertyNotNull(property);
2596         add(property, new UserMessage(ERRORS_property_type_date, arg0));
2597         return this;
2598     }
2599 
2600     /**
2601      * Add the created action message for the key 'errors.property_type_array' with parameters.
2602      * <pre>
2603      * message: {0} must be an array.
2604      * </pre>
2605      * @param property The property name for the message. (NotNull)
2606      * @param arg0 The parameter arg0 for message. (NotNull)
2607      * @return this. (NotNull)
2608      */
2609     public FessMessages addErrorsPropertyTypeArray(String property, String arg0) {
2610         assertPropertyNotNull(property);
2611         add(property, new UserMessage(ERRORS_property_type_array, arg0));
2612         return this;
2613     }
2614 
2615     /**
2616      * Add the created action message for the key 'errors.storage_file_upload_failure' with parameters.
2617      * <pre>
2618      * message: Failed to upload {0}.
2619      * </pre>
2620      * @param property The property name for the message. (NotNull)
2621      * @param arg0 The parameter arg0 for message. (NotNull)
2622      * @return this. (NotNull)
2623      */
2624     public FessMessages addErrorsStorageFileUploadFailure(String property, String arg0) {
2625         assertPropertyNotNull(property);
2626         add(property, new UserMessage(ERRORS_storage_file_upload_failure, arg0));
2627         return this;
2628     }
2629 
2630     /**
2631      * Add the created action message for the key 'errors.storage_file_not_found' with parameters.
2632      * <pre>
2633      * message: The target file does not exist in the storage.
2634      * </pre>
2635      * @param property The property name for the message. (NotNull)
2636      * @return this. (NotNull)
2637      */
2638     public FessMessages addErrorsStorageFileNotFound(String property) {
2639         assertPropertyNotNull(property);
2640         add(property, new UserMessage(ERRORS_storage_file_not_found));
2641         return this;
2642     }
2643 
2644     /**
2645      * Add the created action message for the key 'errors.storage_file_download_failure' with parameters.
2646      * <pre>
2647      * message: Failed to download {0}.
2648      * </pre>
2649      * @param property The property name for the message. (NotNull)
2650      * @param arg0 The parameter arg0 for message. (NotNull)
2651      * @return this. (NotNull)
2652      */
2653     public FessMessages addErrorsStorageFileDownloadFailure(String property, String arg0) {
2654         assertPropertyNotNull(property);
2655         add(property, new UserMessage(ERRORS_storage_file_download_failure, arg0));
2656         return this;
2657     }
2658 
2659     /**
2660      * Add the created action message for the key 'errors.storage_access_error' with parameters.
2661      * <pre>
2662      * message: Storage Access Error: {0}
2663      * </pre>
2664      * @param property The property name for the message. (NotNull)
2665      * @param arg0 The parameter arg0 for message. (NotNull)
2666      * @return this. (NotNull)
2667      */
2668     public FessMessages addErrorsStorageAccessError(String property, String arg0) {
2669         assertPropertyNotNull(property);
2670         add(property, new UserMessage(ERRORS_storage_access_error, arg0));
2671         return this;
2672     }
2673 
2674     /**
2675      * Add the created action message for the key 'errors.storage_no_upload_file' with parameters.
2676      * <pre>
2677      * message: Please specify a file to upload.
2678      * </pre>
2679      * @param property The property name for the message. (NotNull)
2680      * @return this. (NotNull)
2681      */
2682     public FessMessages addErrorsStorageNoUploadFile(String property) {
2683         assertPropertyNotNull(property);
2684         add(property, new UserMessage(ERRORS_storage_no_upload_file));
2685         return this;
2686     }
2687 
2688     /**
2689      * Add the created action message for the key 'errors.storage_directory_name_is_invalid' with parameters.
2690      * <pre>
2691      * message: The directory name is invalid.
2692      * </pre>
2693      * @param property The property name for the message. (NotNull)
2694      * @return this. (NotNull)
2695      */
2696     public FessMessages addErrorsStorageDirectoryNameIsInvalid(String property) {
2697         assertPropertyNotNull(property);
2698         add(property, new UserMessage(ERRORS_storage_directory_name_is_invalid));
2699         return this;
2700     }
2701 
2702     /**
2703      * Add the created action message for the key 'errors.storage_tags_update_failure' with parameters.
2704      * <pre>
2705      * message: Failed to update tags of {0}.
2706      * </pre>
2707      * @param property The property name for the message. (NotNull)
2708      * @param arg0 The parameter arg0 for message. (NotNull)
2709      * @return this. (NotNull)
2710      */
2711     public FessMessages addErrorsStorageTagsUpdateFailure(String property, String arg0) {
2712         assertPropertyNotNull(property);
2713         add(property, new UserMessage(ERRORS_storage_tags_update_failure, arg0));
2714         return this;
2715     }
2716 
2717     /**
2718      * Add the created action message for the key 'success.update_crawler_params' with parameters.
2719      * <pre>
2720      * message: Updated parameters.
2721      * </pre>
2722      * @param property The property name for the message. (NotNull)
2723      * @return this. (NotNull)
2724      */
2725     public FessMessages addSuccessUpdateCrawlerParams(String property) {
2726         assertPropertyNotNull(property);
2727         add(property, new UserMessage(SUCCESS_update_crawler_params));
2728         return this;
2729     }
2730 
2731     /**
2732      * Add the created action message for the key 'success.delete_doc_from_index' with parameters.
2733      * <pre>
2734      * message: Started a process to delete documents from an index.
2735      * </pre>
2736      * @param property The property name for the message. (NotNull)
2737      * @return this. (NotNull)
2738      */
2739     public FessMessages addSuccessDeleteDocFromIndex(String property) {
2740         assertPropertyNotNull(property);
2741         add(property, new UserMessage(SUCCESS_delete_doc_from_index));
2742         return this;
2743     }
2744 
2745     /**
2746      * Add the created action message for the key 'success.crawling_info_delete_all' with parameters.
2747      * <pre>
2748      * message: Deleted session data.
2749      * </pre>
2750      * @param property The property name for the message. (NotNull)
2751      * @return this. (NotNull)
2752      */
2753     public FessMessages addSuccessCrawlingInfoDeleteAll(String property) {
2754         assertPropertyNotNull(property);
2755         add(property, new UserMessage(SUCCESS_crawling_info_delete_all));
2756         return this;
2757     }
2758 
2759     /**
2760      * Add the created action message for the key 'success.start_crawl_process' with parameters.
2761      * <pre>
2762      * message: Started a crawl process.
2763      * </pre>
2764      * @param property The property name for the message. (NotNull)
2765      * @return this. (NotNull)
2766      */
2767     public FessMessages addSuccessStartCrawlProcess(String property) {
2768         assertPropertyNotNull(property);
2769         add(property, new UserMessage(SUCCESS_start_crawl_process));
2770         return this;
2771     }
2772 
2773     /**
2774      * Add the created action message for the key 'success.upload_design_file' with parameters.
2775      * <pre>
2776      * message: Updated {0}.
2777      * </pre>
2778      * @param property The property name for the message. (NotNull)
2779      * @param arg0 The parameter arg0 for message. (NotNull)
2780      * @return this. (NotNull)
2781      */
2782     public FessMessages addSuccessUploadDesignFile(String property, String arg0) {
2783         assertPropertyNotNull(property);
2784         add(property, new UserMessage(SUCCESS_upload_design_file, arg0));
2785         return this;
2786     }
2787 
2788     /**
2789      * Add the created action message for the key 'success.update_design_jsp_file' with parameters.
2790      * <pre>
2791      * message: Updated {0}.
2792      * </pre>
2793      * @param property The property name for the message. (NotNull)
2794      * @param arg0 The parameter arg0 for message. (NotNull)
2795      * @return this. (NotNull)
2796      */
2797     public FessMessages addSuccessUpdateDesignJspFile(String property, String arg0) {
2798         assertPropertyNotNull(property);
2799         add(property, new UserMessage(SUCCESS_update_design_jsp_file, arg0));
2800         return this;
2801     }
2802 
2803     /**
2804      * Add the created action message for the key 'success.create_crawling_config_at_wizard' with parameters.
2805      * <pre>
2806      * message: Created a crawling config {0}.
2807      * </pre>
2808      * @param property The property name for the message. (NotNull)
2809      * @param arg0 The parameter arg0 for message. (NotNull)
2810      * @return this. (NotNull)
2811      */
2812     public FessMessages addSuccessCreateCrawlingConfigAtWizard(String property, String arg0) {
2813         assertPropertyNotNull(property);
2814         add(property, new UserMessage(SUCCESS_create_crawling_config_at_wizard, arg0));
2815         return this;
2816     }
2817 
2818     /**
2819      * Add the created action message for the key 'success.failure_url_delete_all' with parameters.
2820      * <pre>
2821      * message: Deleted failure URLs.
2822      * </pre>
2823      * @param property The property name for the message. (NotNull)
2824      * @return this. (NotNull)
2825      */
2826     public FessMessages addSuccessFailureUrlDeleteAll(String property) {
2827         assertPropertyNotNull(property);
2828         add(property, new UserMessage(SUCCESS_failure_url_delete_all));
2829         return this;
2830     }
2831 
2832     /**
2833      * Add the created action message for the key 'success.delete_file' with parameters.
2834      * <pre>
2835      * message: Deleted {0} file.
2836      * </pre>
2837      * @param property The property name for the message. (NotNull)
2838      * @param arg0 The parameter arg0 for message. (NotNull)
2839      * @return this. (NotNull)
2840      */
2841     public FessMessages addSuccessDeleteFile(String property, String arg0) {
2842         assertPropertyNotNull(property);
2843         add(property, new UserMessage(SUCCESS_delete_file, arg0));
2844         return this;
2845     }
2846 
2847     /**
2848      * Add the created action message for the key 'success.job_started' with parameters.
2849      * <pre>
2850      * message: Started a job: {0}.
2851      * </pre>
2852      * @param property The property name for the message. (NotNull)
2853      * @param arg0 The parameter arg0 for message. (NotNull)
2854      * @return this. (NotNull)
2855      */
2856     public FessMessages addSuccessJobStarted(String property, String arg0) {
2857         assertPropertyNotNull(property);
2858         add(property, new UserMessage(SUCCESS_job_started, arg0));
2859         return this;
2860     }
2861 
2862     /**
2863      * Add the created action message for the key 'success.job_stopped' with parameters.
2864      * <pre>
2865      * message: Stopped a job: {0}.
2866      * </pre>
2867      * @param property The property name for the message. (NotNull)
2868      * @param arg0 The parameter arg0 for message. (NotNull)
2869      * @return this. (NotNull)
2870      */
2871     public FessMessages addSuccessJobStopped(String property, String arg0) {
2872         assertPropertyNotNull(property);
2873         add(property, new UserMessage(SUCCESS_job_stopped, arg0));
2874         return this;
2875     }
2876 
2877     /**
2878      * Add the created action message for the key 'success.upload_synonym_file' with parameters.
2879      * <pre>
2880      * message: Uploaded a synonym file.
2881      * </pre>
2882      * @param property The property name for the message. (NotNull)
2883      * @return this. (NotNull)
2884      */
2885     public FessMessages addSuccessUploadSynonymFile(String property) {
2886         assertPropertyNotNull(property);
2887         add(property, new UserMessage(SUCCESS_upload_synonym_file));
2888         return this;
2889     }
2890 
2891     /**
2892      * Add the created action message for the key 'success.upload_protwords_file' with parameters.
2893      * <pre>
2894      * message: Uploaded a protwords file.
2895      * </pre>
2896      * @param property The property name for the message. (NotNull)
2897      * @return this. (NotNull)
2898      */
2899     public FessMessages addSuccessUploadProtwordsFile(String property) {
2900         assertPropertyNotNull(property);
2901         add(property, new UserMessage(SUCCESS_upload_protwords_file));
2902         return this;
2903     }
2904 
2905     /**
2906      * Add the created action message for the key 'success.upload_stopwords_file' with parameters.
2907      * <pre>
2908      * message: Uploaded a stopwords file.
2909      * </pre>
2910      * @param property The property name for the message. (NotNull)
2911      * @return this. (NotNull)
2912      */
2913     public FessMessages addSuccessUploadStopwordsFile(String property) {
2914         assertPropertyNotNull(property);
2915         add(property, new UserMessage(SUCCESS_upload_stopwords_file));
2916         return this;
2917     }
2918 
2919     /**
2920      * Add the created action message for the key 'success.upload_stemmeroverride_file' with parameters.
2921      * <pre>
2922      * message: Uploaded a stemmer override file.
2923      * </pre>
2924      * @param property The property name for the message. (NotNull)
2925      * @return this. (NotNull)
2926      */
2927     public FessMessages addSuccessUploadStemmeroverrideFile(String property) {
2928         assertPropertyNotNull(property);
2929         add(property, new UserMessage(SUCCESS_upload_stemmeroverride_file));
2930         return this;
2931     }
2932 
2933     /**
2934      * Add the created action message for the key 'success.upload_kuromoji_file' with parameters.
2935      * <pre>
2936      * message: Uploaded a Kuromoji file.
2937      * </pre>
2938      * @param property The property name for the message. (NotNull)
2939      * @return this. (NotNull)
2940      */
2941     public FessMessages addSuccessUploadKuromojiFile(String property) {
2942         assertPropertyNotNull(property);
2943         add(property, new UserMessage(SUCCESS_upload_kuromoji_file));
2944         return this;
2945     }
2946 
2947     /**
2948      * Add the created action message for the key 'success.upload_elevate_word' with parameters.
2949      * <pre>
2950      * message: Uploaded an elevate word file.
2951      * </pre>
2952      * @param property The property name for the message. (NotNull)
2953      * @return this. (NotNull)
2954      */
2955     public FessMessages addSuccessUploadElevateWord(String property) {
2956         assertPropertyNotNull(property);
2957         add(property, new UserMessage(SUCCESS_upload_elevate_word));
2958         return this;
2959     }
2960 
2961     /**
2962      * Add the created action message for the key 'success.upload_bad_word' with parameters.
2963      * <pre>
2964      * message: Uploaded a bad word file.
2965      * </pre>
2966      * @param property The property name for the message. (NotNull)
2967      * @return this. (NotNull)
2968      */
2969     public FessMessages addSuccessUploadBadWord(String property) {
2970         assertPropertyNotNull(property);
2971         add(property, new UserMessage(SUCCESS_upload_bad_word));
2972         return this;
2973     }
2974 
2975     /**
2976      * Add the created action message for the key 'success.upload_mapping_file' with parameters.
2977      * <pre>
2978      * message: Uploaded a mapping file.
2979      * </pre>
2980      * @param property The property name for the message. (NotNull)
2981      * @return this. (NotNull)
2982      */
2983     public FessMessages addSuccessUploadMappingFile(String property) {
2984         assertPropertyNotNull(property);
2985         add(property, new UserMessage(SUCCESS_upload_mapping_file));
2986         return this;
2987     }
2988 
2989     /**
2990      * Add the created action message for the key 'success.send_testmail' with parameters.
2991      * <pre>
2992      * message: Sent a test mail.
2993      * </pre>
2994      * @param property The property name for the message. (NotNull)
2995      * @return this. (NotNull)
2996      */
2997     public FessMessages addSuccessSendTestmail(String property) {
2998         assertPropertyNotNull(property);
2999         add(property, new UserMessage(SUCCESS_send_testmail));
3000         return this;
3001     }
3002 
3003     /**
3004      * Add the created action message for the key 'success.job_log_delete_all' with parameters.
3005      * <pre>
3006      * message: Deleted job logs.
3007      * </pre>
3008      * @param property The property name for the message. (NotNull)
3009      * @return this. (NotNull)
3010      */
3011     public FessMessages addSuccessJobLogDeleteAll(String property) {
3012         assertPropertyNotNull(property);
3013         add(property, new UserMessage(SUCCESS_job_log_delete_all));
3014         return this;
3015     }
3016 
3017     /**
3018      * Add the created action message for the key 'success.changed_password' with parameters.
3019      * <pre>
3020      * message: Changed your password.
3021      * </pre>
3022      * @param property The property name for the message. (NotNull)
3023      * @return this. (NotNull)
3024      */
3025     public FessMessages addSuccessChangedPassword(String property) {
3026         assertPropertyNotNull(property);
3027         add(property, new UserMessage(SUCCESS_changed_password));
3028         return this;
3029     }
3030 
3031     /**
3032      * Add the created action message for the key 'success.started_data_update' with parameters.
3033      * <pre>
3034      * message: Started a data update process.
3035      * </pre>
3036      * @param property The property name for the message. (NotNull)
3037      * @return this. (NotNull)
3038      */
3039     public FessMessages addSuccessStartedDataUpdate(String property) {
3040         assertPropertyNotNull(property);
3041         add(property, new UserMessage(SUCCESS_started_data_update));
3042         return this;
3043     }
3044 
3045     /**
3046      * Add the created action message for the key 'success.reindex_started' with parameters.
3047      * <pre>
3048      * message: Started re-indexing.
3049      * </pre>
3050      * @param property The property name for the message. (NotNull)
3051      * @return this. (NotNull)
3052      */
3053     public FessMessages addSuccessReindexStarted(String property) {
3054         assertPropertyNotNull(property);
3055         add(property, new UserMessage(SUCCESS_reindex_started));
3056         return this;
3057     }
3058 
3059     /**
3060      * Add the created action message for the key 'success.bulk_process_started' with parameters.
3061      * <pre>
3062      * message: Started a bulk process.
3063      * </pre>
3064      * @param property The property name for the message. (NotNull)
3065      * @return this. (NotNull)
3066      */
3067     public FessMessages addSuccessBulkProcessStarted(String property) {
3068         assertPropertyNotNull(property);
3069         add(property, new UserMessage(SUCCESS_bulk_process_started));
3070         return this;
3071     }
3072 
3073     /**
3074      * Add the created action message for the key 'success.print_thread_dump' with parameters.
3075      * <pre>
3076      * message: Printed a thread dump to a log file.
3077      * </pre>
3078      * @param property The property name for the message. (NotNull)
3079      * @return this. (NotNull)
3080      */
3081     public FessMessages addSuccessPrintThreadDump(String property) {
3082         assertPropertyNotNull(property);
3083         add(property, new UserMessage(SUCCESS_print_thread_dump));
3084         return this;
3085     }
3086 
3087     /**
3088      * Add the created action message for the key 'success.install_plugin' with parameters.
3089      * <pre>
3090      * message: Installing plugin {0}.
3091      * </pre>
3092      * @param property The property name for the message. (NotNull)
3093      * @param arg0 The parameter arg0 for message. (NotNull)
3094      * @return this. (NotNull)
3095      */
3096     public FessMessages addSuccessInstallPlugin(String property, String arg0) {
3097         assertPropertyNotNull(property);
3098         add(property, new UserMessage(SUCCESS_install_plugin, arg0));
3099         return this;
3100     }
3101 
3102     /**
3103      * Add the created action message for the key 'success.delete_plugin' with parameters.
3104      * <pre>
3105      * message: Deleting plugin {0}.
3106      * </pre>
3107      * @param property The property name for the message. (NotNull)
3108      * @param arg0 The parameter arg0 for message. (NotNull)
3109      * @return this. (NotNull)
3110      */
3111     public FessMessages addSuccessDeletePlugin(String property, String arg0) {
3112         assertPropertyNotNull(property);
3113         add(property, new UserMessage(SUCCESS_delete_plugin, arg0));
3114         return this;
3115     }
3116 
3117     /**
3118      * Add the created action message for the key 'success.upload_file_to_storage' with parameters.
3119      * <pre>
3120      * message: Uploaded {0}.
3121      * </pre>
3122      * @param property The property name for the message. (NotNull)
3123      * @param arg0 The parameter arg0 for message. (NotNull)
3124      * @return this. (NotNull)
3125      */
3126     public FessMessages addSuccessUploadFileToStorage(String property, String arg0) {
3127         assertPropertyNotNull(property);
3128         add(property, new UserMessage(SUCCESS_upload_file_to_storage, arg0));
3129         return this;
3130     }
3131 
3132     /**
3133      * Add the created action message for the key 'success.sso_logout' with parameters.
3134      * <pre>
3135      * message: You have been logged out.
3136      * </pre>
3137      * @param property The property name for the message. (NotNull)
3138      * @return this. (NotNull)
3139      */
3140     public FessMessages addSuccessSsoLogout(String property) {
3141         assertPropertyNotNull(property);
3142         add(property, new UserMessage(SUCCESS_sso_logout));
3143         return this;
3144     }
3145 
3146     /**
3147      * Add the created action message for the key 'success.update_storage_tags' with parameters.
3148      * <pre>
3149      * message: Updated tags of {0}.
3150      * </pre>
3151      * @param property The property name for the message. (NotNull)
3152      * @param arg0 The parameter arg0 for message. (NotNull)
3153      * @return this. (NotNull)
3154      */
3155     public FessMessages addSuccessUpdateStorageTags(String property, String arg0) {
3156         assertPropertyNotNull(property);
3157         add(property, new UserMessage(SUCCESS_update_storage_tags, arg0));
3158         return this;
3159     }
3160 
3161     /**
3162      * Add the created action message for the key 'success.crud_create_crud_table' with parameters.
3163      * <pre>
3164      * message: Created the data.
3165      * </pre>
3166      * @param property The property name for the message. (NotNull)
3167      * @return this. (NotNull)
3168      */
3169     public FessMessages addSuccessCrudCreateCrudTable(String property) {
3170         assertPropertyNotNull(property);
3171         add(property, new UserMessage(SUCCESS_crud_create_crud_table));
3172         return this;
3173     }
3174 
3175     /**
3176      * Add the created action message for the key 'success.crud_update_crud_table' with parameters.
3177      * <pre>
3178      * message: Updated the data.
3179      * </pre>
3180      * @param property The property name for the message. (NotNull)
3181      * @return this. (NotNull)
3182      */
3183     public FessMessages addSuccessCrudUpdateCrudTable(String property) {
3184         assertPropertyNotNull(property);
3185         add(property, new UserMessage(SUCCESS_crud_update_crud_table));
3186         return this;
3187     }
3188 
3189     /**
3190      * Add the created action message for the key 'success.crud_delete_crud_table' with parameters.
3191      * <pre>
3192      * message: Deleted the data.
3193      * </pre>
3194      * @param property The property name for the message. (NotNull)
3195      * @return this. (NotNull)
3196      */
3197     public FessMessages addSuccessCrudDeleteCrudTable(String property) {
3198         assertPropertyNotNull(property);
3199         add(property, new UserMessage(SUCCESS_crud_delete_crud_table));
3200         return this;
3201     }
3202 }