Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSearchLogMap (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

                    form.logType = logType;
                    form.crudMode = crudMode;
                });
            }).renderWith(data -> {
                RenderDataUtil.register(data, "logParamItems", searchLogService.getSearchLogMap(logType, id));
            });
        }
    
        // -----------------------------------------------------
        //                                         Actually Crud
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

         * @param id The ID of the log entry
         * @return Map containing formatted field names and values for display
         */
        public Map<String, String> getSearchLogMap(final String logType, final String id) {
            if (SearchLogPager.LOG_TYPE_USERINFO.equalsIgnoreCase(logType)) {
                return userInfoBhv.selectByPK(id).map(e -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top