Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DeleteForm (0.5 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

         *
         * @param form the delete form containing plugin information
         * @return HTML response redirecting to the plugin list
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final DeleteForm form) {
            validate(form, messages -> {}, () -> asHtml(path_AdminPlugin_AdminPluginJsp));
            verifyToken(() -> asHtml(path_AdminPlugin_AdminPluginJsp));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         *
         * @param form the delete form containing document ID
         * @return HTML response redirecting to the list page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final DeleteForm form) {
            validate(form, messages -> {}, this::asListHtml);
            verifyToken(this::asListHtml);
            final String docId = form.docId;
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
Back to top