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.app.web.admin.general;
17  
18  import javax.validation.constraints.Size;
19  
20  import org.lastaflute.web.validation.Required;
21  
22  /**
23   * @author shinsuke
24   */
25  public class MailForm {
26  
27      public String incrementalCrawling;
28  
29      public String dayForCleanup;
30  
31      public String crawlingThreadCount;
32  
33      public String searchLog;
34  
35      public String userInfo;
36  
37      public String userFavorite;
38  
39      public String webApiJson;
40  
41      public String defaultLabelValue;
42  
43      public String appendQueryParameter;
44  
45      public String loginRequired;
46  
47      public String ignoreFailureType;
48  
49      public String failureCountThreshold;
50  
51      public String popularWord;
52  
53      public String csvFileEncoding;
54  
55      public String purgeSearchLogDay;
56  
57      public String purgeJobLogDay;
58  
59      public String purgeUserInfoDay;
60  
61      public String purgeByBots;
62  
63      @Required
64      @Size(max = 1000)
65      public String notificationTo;
66  
67      public String suggestSearchLog;
68  
69      public String suggestDocuments;
70  
71      public String purgeSuggestSearchLogDay;
72  
73  }