Class DeleteForm

java.lang.Object
org.codelibs.fess.app.web.admin.searchlist.DeleteForm

public class DeleteForm extends Object
Form class for deleting documents from search results in the admin interface. Contains query and document ID fields for targeted document deletion.
  • Field Details

    • q

      @Size(max=1000) public @Size(max=1000) String q
      The search query used to find the document. Optional field with maximum length of 1000 characters.
    • docId

      @Required public @Required String docId
      The document ID of the document to delete. Required field for identifying the specific document.
  • Constructor Details

    • DeleteForm

      public DeleteForm()
      Creates a new instance of DeleteForm. This constructor initializes the form for deleting documents from search results in the admin interface with validation rules for query and document identification.