Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for WebConfig (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null);
            for (final WebConfig webConfig : webConfigList) {
                itemList.add(createItem(webConfig.getName(), webConfig.getId().toString()));
            }
            RenderDataUtil.register(data, "webConfigItems", itemList);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.webconfig;
    
    import org.codelibs.fess.app.web.admin.webconfig.EditForm;
    
    /**
     * Request body class for web config edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        /**
         * Retrieves or creates a WebConfig entity based on the form's CRUD mode.
         *
         * @param form the form containing the web config data
         * @param username the username of the current user
         * @param currentTime the current timestamp
         * @return an optional WebConfig entity
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null);
            for (final WebConfig webConfig : webConfigList) {
                itemList.add(createItem(webConfig.getName(), webConfig.getId().toString()));
            }
            RenderDataUtil.register(data, "webConfigItems", itemList);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         * (withLabelType=true, withRoleType=true, available=true, idList=null).
         *
         * @return a list of all available WebConfig objects
         */
        public List<WebConfig> getAllWebConfigList() {
            return getAllWebConfigList(true, true, true, null);
        }
    
        /**
         * Retrieves web crawling configurations filtered by a list of IDs.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19.5K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/SearchBody.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.webconfig;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for web crawling configuration administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. MIGRATION.md

    - `GET /webconfig` - List web crawl configs
    - `POST /webconfig` - Create web crawl config
    - `PUT /webconfig/{id}` - Update web crawl config
    - `DELETE /webconfig/{id}` - Delete web crawl config
    - (Similar CRUD for `fileconfig`, `dataconfig`, `labeltype`, etc.)
    
    **Example - List All Web Configs**:
    ```bash
    curl -X GET "http://localhost:8080/api/admin/webconfig" \
      -u admin:admin
    ```
    
    ---
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/SearchForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.webconfig;
    
    /**
     * The search form for Web Config.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/webconfig/admin_webconfig.jsp */
        HtmlNext path_AdminWebconfig_AdminWebconfigJsp = new HtmlNext("/admin/webconfig/admin_webconfig.jsp");
    
        /** The path of the HTML: /admin/webconfig/admin_webconfig_details.jsp */
        HtmlNext path_AdminWebconfig_AdminWebconfigDetailsJsp = new HtmlNext("/admin/webconfig/admin_webconfig_details.jsp");
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/EditForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.webconfig;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top