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