Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeleteForm (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.java

     * Contains validation rules for plugin name and version information.
     */
    public class DeleteForm {
    
        /**
         * Creates a new instance of DeleteForm.
         * This constructor initializes the form for plugin deletion operations
         * in the admin interface with validation rules for plugin information.
         */
        public DeleteForm() {
            // Default constructor with explicit documentation
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

     * Contains query and document ID fields for targeted document deletion.
     */
    public class 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.
         */
        public DeleteForm() {
            // Default constructor with explicit documentation
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/DeleteBody.java

     */
    package org.codelibs.fess.app.web.api.admin.plugin;
    
    import org.codelibs.fess.app.web.admin.plugin.DeleteForm;
    
    /**
     * Request body class for plugin deletion API endpoint.
     * Extends the standard plugin DeleteForm to provide JSON request body functionality
     * for REST API operations.
     */
    public class DeleteBody extends DeleteForm {
    
        /**
         * Creates a new instance of DeleteBody.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top