Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for KeyMatchPager (0.26 sec)

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

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for KeyMatch.
     */
    public class KeyMatchPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public KeyMatchPager() {
            // Default constructor
        }
    
        /** The default page size. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

         *
         * @param cb The condition bean.
         * @param keyMatchPager The pager for key matches.
         */
        protected void setupListCondition(final KeyMatchCB cb, final KeyMatchPager keyMatchPager) {
            if (StringUtil.isNotBlank(keyMatchPager.term)) {
                cb.query().setTerm_Wildcard(wrapQuery(keyMatchPager.term));
            }
            if (StringUtil.isNotBlank(keyMatchPager.query)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        /** Service for key match operations. */
        @Resource
        private KeyMatchService keyMatchService;
    
        /** Pager for key match list pagination. */
        @Resource
        private KeyMatchPager keyMatchPager;
    
        // ===================================================================================
        //                                                                               Hook
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch.jsp

                                        </div>
                                    </la:form>
                                </div>
                                <%-- List --%>
                                <c:if test="${keyMatchPager.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: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

        // PUT /api/admin/keymatch/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
            final KeyMatchPager pager = copyBeanToNewBean(body, KeyMatchPager.class);
            final List<KeyMatch> list = keyMatchService.getKeyMatchList(pager);
            return asJson(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top