Class CrawlingConfigForm
java.lang.Object
org.codelibs.fess.app.web.admin.wizard.CrawlingConfigForm
Form class for crawling configuration wizard in the admin interface.
Contains validation constraints for creating new crawling configurations.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=200) StringName of the crawling configuration.@Required @Size(max=1000) StringPath or URL to be crawled by this configuration.@Min(0L) @Max(2147483647L) IntegerMaximum depth for crawling (how many levels deep to follow links).@Min(0L) @Max(9223372036854775807L) LongMaximum number of pages/documents to access during crawling. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
crawlingConfigName
Name of the crawling configuration. -
crawlingConfigPath
Path or URL to be crawled by this configuration. -
depth
Maximum depth for crawling (how many levels deep to follow links). -
maxAccessCount
@Min(0L) @Max(9223372036854775807L) @ValidateTypeFailure public @Min(0L) @Max(9223372036854775807L) Long maxAccessCountMaximum number of pages/documents to access during crawling.
-
-
Constructor Details
-
CrawlingConfigForm
public CrawlingConfigForm()Creates a new form instance.
-