Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProtwordsPager (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

    /**
     * Pager for protected words dictionary management.
     * This class handles pagination functionality for browsing protected words.
     */
    public class ProtwordsPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public ProtwordsPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /** The total number of records. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

         * @param dictId the dictionary ID
         * @param protwordsPager the pager for pagination
         * @return the list of protected words items
         */
        public List<ProtwordsItem> getProtwordsList(final String dictId, final ProtwordsPager protwordsPager) {
            return getProtwordsFile(dictId).map(file -> {
                final int pageSize = protwordsPager.getPageSize();
                final PagingList<ProtwordsItem> protwordsList =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

        //                                                                           =========
        @Resource
        private ProtwordsService protwordsService;
        @Resource
        private ProtwordsPager protwordsPager;
    
        // ===================================================================================
        //                                                                               Hook
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        @Execute
        public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
            final ProtwordsPager pager = copyBeanToNewBean(body, ProtwordsPager.class);
            return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(protwordsService.getProtwordsList(body.dictId, pager)
                    .stream()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp

                                    </la:info>
                                    <la:errors/>
                                </div>
                                <%-- List --%>
                                <c:if test="${protwordsPager.allRecordCount == 0}">
                                    <div class="row top10">
                                        <div class="col-sm-12">
                                            <em class="fa fa-info-circle text-primary">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
Back to top