Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.crawlinginfo.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing crawling information in the admin interface.
This form handles the editing of crawling session data, which tracks
the status and metadata of web crawling operations.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe timestamp when this crawling session was created.intThe CRUD operation mode for this form.The expiration time for the crawling session.@Required @Size(max=1000) StringThe unique identifier of the crawling information entry being edited.@Size(max=20) StringThe name or description of the crawling session.@Required @Size(max=20) StringThe session identifier of the crawling session. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidInitializes the form with default null values.
-
Field Details
-
crudMode
@ValidateTypeFailure public int crudModeThe CRUD operation mode for this form. Indicates whether this is a create, read, update, or delete operation. -
id
The unique identifier of the crawling information entry being edited. This is a required field for identifying which crawling info to update. -
sessionId
The session identifier of the crawling session. This is a required field that identifies the specific crawling session. Maximum length is 20 characters. -
name
The name or description of the crawling session. This is an optional descriptive field with a maximum length of 20 characters. -
expiredTime
The expiration time for the crawling session. This field indicates when the crawling session should expire or be cleaned up. -
createdTime
The timestamp when this crawling session was created. Stored as a long value representing milliseconds since epoch.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-
-
Method Details
-
initialize
public void initialize()Initializes the form with default null values. This method resets all fields to their default state for creating a new entry.
-