Class EditForm

java.lang.Object
org.codelibs.fess.app.web.admin.webauth.CreateForm
org.codelibs.fess.app.web.admin.webauth.EditForm
Direct Known Subclasses:
EditBody

public class EditForm extends CreateForm
Form class for editing web authentication configurations in the admin interface. This form extends CreateForm to include fields necessary for updating existing web authentication entries, including tracking information for optimistic locking and audit trails. Web authentication configurations define credentials for accessing protected web resources during crawling.
  • Field Details

    • id

      @Required @Size(max=1000) public @Required @Size(max=1000) String id
      The unique identifier of the web authentication configuration being edited. This is a required field for identifying which web authentication entry to update.
    • updatedBy

      @Size(max=255) public @Size(max=255) String updatedBy
      The username of the user who last updated this web authentication configuration. Used for audit trail purposes to track who made changes. Maximum length is 255 characters.
    • updatedTime

      @ValidateTypeFailure public Long updatedTime
      The timestamp when this web authentication configuration was last updated. Stored as a long value representing milliseconds since epoch. Used for audit trail and concurrency control.
    • versionNo

      @Required @ValidateTypeFailure public @Required Integer versionNo
      The version number of the web authentication configuration for optimistic locking. This field is required to prevent concurrent modification conflicts by ensuring the configuration hasn't been modified by another process.
  • Constructor Details

    • EditForm

      public EditForm()
      Creates a new EditForm instance.