remove Serializable
This commit is contained in:
parent
eebbcc77bb
commit
065e2a117b
121 changed files with 101 additions and 483 deletions
|
@ -17,7 +17,6 @@ package org.codelibs.fess.app.service;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.Reader;
|
||||
import java.io.Serializable;
|
||||
import java.io.Writer;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -43,12 +42,10 @@ import com.orangesignal.csv.CsvConfig;
|
|||
import com.orangesignal.csv.CsvReader;
|
||||
import com.orangesignal.csv.CsvWriter;
|
||||
|
||||
public class BadWordService implements Serializable {
|
||||
public class BadWordService {
|
||||
|
||||
private static final String DELETE_PREFIX = "--";
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(BadWordService.class);
|
||||
|
||||
@Resource
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class BoostDocumentRuleService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class BoostDocumentRuleService {
|
||||
|
||||
@Resource
|
||||
protected BoostDocumentRuleBhv boostDocumentRuleBhv;
|
||||
|
|
|
@ -17,7 +17,6 @@ package org.codelibs.fess.app.service;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.Reader;
|
||||
import java.io.Serializable;
|
||||
import java.io.Writer;
|
||||
import java.text.DateFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
|
@ -55,9 +54,7 @@ import com.orangesignal.csv.CsvConfig;
|
|||
import com.orangesignal.csv.CsvReader;
|
||||
import com.orangesignal.csv.CsvWriter;
|
||||
|
||||
public class CrawlingInfoService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CrawlingInfoService {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(CrawlingInfoService.class);
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -33,9 +32,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class DataConfigService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DataConfigService {
|
||||
|
||||
@Resource
|
||||
protected DataConfigToLabelBhv dataConfigToLabelBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class DuplicateHostService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DuplicateHostService {
|
||||
|
||||
@Resource
|
||||
protected DuplicateHostBhv duplicateHostBhv;
|
||||
|
|
|
@ -19,7 +19,6 @@ import static org.codelibs.core.stream.StreamUtil.stream;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.Reader;
|
||||
import java.io.Serializable;
|
||||
import java.io.Writer;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -49,9 +48,7 @@ import com.orangesignal.csv.CsvConfig;
|
|||
import com.orangesignal.csv.CsvReader;
|
||||
import com.orangesignal.csv.CsvWriter;
|
||||
|
||||
public class ElevateWordService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class ElevateWordService {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(ElevateWordService.class);
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.PrintWriter;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
@ -41,9 +40,7 @@ import org.dbflute.cbean.result.ListResultBean;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class FailureUrlService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class FailureUrlService {
|
||||
|
||||
@Resource
|
||||
protected FailureUrlBhv failureUrlBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class FileAuthenticationService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class FileAuthenticationService {
|
||||
|
||||
@Resource
|
||||
protected FileAuthenticationBhv fileAuthenticationBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -34,9 +33,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class FileConfigService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class FileConfigService {
|
||||
|
||||
@Resource
|
||||
protected FileConfigToLabelBhv fileConfigToLabelBhv;
|
||||
|
|
|
@ -17,7 +17,6 @@ package org.codelibs.fess.app.service;
|
|||
|
||||
import static org.codelibs.core.stream.StreamUtil.stream;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -34,9 +33,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class GroupService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class GroupService {
|
||||
|
||||
@Resource
|
||||
protected GroupBhv groupBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class JobLogService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class JobLogService {
|
||||
|
||||
@Resource
|
||||
protected JobLogBhv jobLogBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class KeyMatchService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class KeyMatchService {
|
||||
|
||||
@Resource
|
||||
protected KeyMatchBhv keyMatchBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -32,9 +31,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class LabelTypeService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class LabelTypeService {
|
||||
|
||||
@Resource
|
||||
protected LabelTypeBhv labelTypeBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -32,9 +31,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class PathMappingService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class PathMappingService {
|
||||
|
||||
@Resource
|
||||
protected PathMappingBhv pathMappingBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class RequestHeaderService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class RequestHeaderService {
|
||||
|
||||
@Resource
|
||||
protected RequestHeaderBhv requestHeaderBhv;
|
||||
|
|
|
@ -17,7 +17,6 @@ package org.codelibs.fess.app.service;
|
|||
|
||||
import static org.codelibs.core.stream.StreamUtil.stream;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -34,9 +33,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class RoleService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class RoleService {
|
||||
|
||||
@Resource
|
||||
protected RoleBhv roleBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class RoleTypeService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class RoleTypeService {
|
||||
|
||||
@Resource
|
||||
protected RoleTypeBhv roleTypeBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -34,9 +33,7 @@ import org.lastaflute.job.LaCron;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class ScheduledJobService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class ScheduledJobService {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(ScheduledJobService.class);
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -34,9 +33,7 @@ import org.dbflute.cbean.result.PagingResultBean;
|
|||
import org.dbflute.optional.OptionalEntity;
|
||||
import org.jsoup.helper.StringUtil;
|
||||
|
||||
public class UserService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UserService {
|
||||
|
||||
@Resource
|
||||
protected UserBhv userBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
@ -30,9 +29,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class WebAuthenticationService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class WebAuthenticationService {
|
||||
|
||||
@Resource
|
||||
protected WebAuthenticationBhv webAuthenticationBhv;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -35,9 +34,7 @@ import org.codelibs.fess.mylasta.direction.FessConfig;
|
|||
import org.dbflute.cbean.result.PagingResultBean;
|
||||
import org.dbflute.optional.OptionalEntity;
|
||||
|
||||
public class WebConfigService implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class WebConfigService {
|
||||
|
||||
@Resource
|
||||
protected WebConfigToLabelBhv webConfigToLabelBhv;
|
||||
|
|
|
@ -15,14 +15,10 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.backup;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public MultipartFormFile bulkFile;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.badword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.util.ComponentUtil;
|
||||
|
@ -27,9 +25,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -15,13 +15,9 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.badword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class DownloadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DownloadForm {
|
||||
|
||||
}
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.badword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.badword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.Required;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public MultipartFormFile badWordFile;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.boostdoc;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -26,9 +24,7 @@ import org.codelibs.fess.util.ComponentUtil;
|
|||
import org.lastaflute.web.validation.Required;
|
||||
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
||||
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -26,8 +26,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.boostdoc;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author jflute
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.crawlinginfo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
@ -26,9 +24,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class EditForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class EditForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public int crudMode;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.crawlinginfo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String sessionId;
|
||||
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dataconfig;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
public String[] labelTypeIds;
|
||||
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dataconfig;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,13 +15,9 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.design;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
|
||||
public class DesignForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DesignForm {
|
||||
|
||||
public MultipartFormFile designFile;
|
||||
|
||||
|
|
|
@ -15,13 +15,9 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.design;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
public class FileAccessForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class FileAccessForm {
|
||||
|
||||
@Required
|
||||
public String fileName;
|
||||
|
|
|
@ -15,16 +15,12 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.design;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Pattern;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public MultipartFormFile designFile;
|
||||
|
|
|
@ -15,16 +15,13 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class ListForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class ListForm {
|
||||
|
||||
public Map<String, String> searchParams = new HashMap<>();
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.kuromoji;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.app.web.CrudMode;
|
||||
|
@ -27,9 +25,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -20,8 +20,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@ValidateTypeFailure
|
||||
public Long id;
|
||||
|
|
|
@ -15,17 +15,13 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.kuromoji;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.kuromoji;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.Required;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.seunjeon;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.app.web.CrudMode;
|
||||
|
@ -26,9 +24,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
/**
|
||||
* @author nocode
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -23,8 +23,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@ValidateTypeFailure
|
||||
public Long id;
|
||||
|
|
|
@ -15,16 +15,12 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.seunjeon;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
/**
|
||||
* @author nocode
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,17 +15,13 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.seunjeon;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
/**
|
||||
* @author nocode
|
||||
*/
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.synonym;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.app.web.CrudMode;
|
||||
|
@ -27,9 +25,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -24,8 +24,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@ValidateTypeFailure
|
||||
public Long id;
|
||||
|
|
|
@ -15,17 +15,13 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.synonym;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.dict.synonym;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.Required;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public String dictId;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.duplicatehost;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.duplicatehost;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.elevateword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.util.ComponentUtil;
|
||||
|
@ -27,9 +25,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
public String[] labelTypeIds;
|
||||
|
||||
|
|
|
@ -15,13 +15,9 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.elevateword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class DownloadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DownloadForm {
|
||||
|
||||
}
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.elevateword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.elevateword;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.ruts.multipart.MultipartFormFile;
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.Required;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class UploadForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class UploadForm {
|
||||
|
||||
@Required
|
||||
public MultipartFormFile elevateWordFile;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.failureurl;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
@ -26,9 +24,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class EditForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class EditForm {
|
||||
|
||||
public String webConfigName;
|
||||
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.failureurl;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String url;
|
||||
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.fileauth;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.fileauth;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.fileconfig;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -33,9 +31,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
public String[] labelTypeIds;
|
||||
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.fileconfig;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.general;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -28,9 +26,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class EditForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class EditForm {
|
||||
|
||||
@Size(max = 10)
|
||||
public String incrementalCrawling;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.general;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.Required;
|
|||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class MailForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class MailForm {
|
||||
|
||||
public String incrementalCrawling;
|
||||
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
@ -26,9 +24,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,14 +15,10 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.joblog;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
||||
|
||||
|
@ -24,9 +22,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class EditForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class EditForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public int crudMode;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.joblog;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.keymatch;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author jflute
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -26,8 +26,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.keymatch;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author jflute
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.labeltype;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Pattern;
|
||||
|
@ -32,9 +30,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author Shunji Makino
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.labeltype;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.pathmap;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -31,9 +29,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author Shunji Makino
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.pathmap;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.reqheader;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.codelibs.fess.app.web.CrudMode;
|
||||
|
@ -29,9 +27,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author Shunji Makino
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,16 +15,12 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.reqheader;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
@ -26,9 +24,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,14 +15,10 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.scheduler;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,14 +15,10 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.scheduler;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.searchlist;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.lastaflute.web.validation.Required;
|
||||
|
||||
public class DeleteForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class DeleteForm {
|
||||
|
||||
@Size(max = 1000)
|
||||
public String q;
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.user;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import org.hibernate.validator.constraints.Email;
|
||||
|
@ -27,9 +25,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author shinsuke
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,14 +15,10 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.user;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author shinsuke
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.webauth;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -30,9 +28,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
@ValidateTypeFailure
|
||||
public Integer crudMode;
|
||||
|
|
|
@ -26,8 +26,6 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
*/
|
||||
public class EditForm extends CreateForm {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Required
|
||||
@Size(max = 1000)
|
||||
public String id;
|
||||
|
|
|
@ -15,15 +15,11 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.webauth;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author codelibs
|
||||
* @author Shunji Makino
|
||||
*/
|
||||
public class SearchForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class SearchForm {
|
||||
|
||||
public String id;
|
||||
}
|
|
@ -15,8 +15,6 @@
|
|||
*/
|
||||
package org.codelibs.fess.app.web.admin.webconfig;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.Size;
|
||||
|
@ -35,9 +33,7 @@ import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
|
|||
* @author Shunji Makino
|
||||
* @author Keiichi Watanabe
|
||||
*/
|
||||
public class CreateForm implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
public class CreateForm {
|
||||
|
||||
public String[] labelTypeIds;
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue