Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for logType (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

         *
         * @param logType The type of log to retrieve (search, click, favorite, userinfo)
         * @param id The ID of the log entry
         * @return Optional entity containing the log entry if found
         */
        public OptionalEntity<?> getSearchLog(final String logType, final String id) {
            if (SearchLogPager.LOG_TYPE_CLICK.equalsIgnoreCase(logType)) {
                return clickLogBhv.selectByPK(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

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

    public class EditForm {
    
        /** CRUD operation mode indicator */
        @ValidateTypeFailure
        public int crudMode;
    
        /** Type of the search log entry */
        @Required
        @Size(max = 10)
        public String logType;
    
        /** Unique identifier for the search log entry */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * Default constructor for EditForm.
         */
        public EditForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

    import org.codelibs.fess.crawler.exception.MultipleCrawlingAccessException;
    import org.codelibs.fess.crawler.helper.impl.LogHelperImpl;
    import org.codelibs.fess.crawler.log.LogType;
    import org.codelibs.fess.exception.ContainerNotAvailableException;
    import org.codelibs.fess.helper.CrawlerStatsHelper.StatsAction;
    import org.codelibs.fess.opensearch.config.exentity.CrawlingConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        private int pageSize;
    
        /** Current page number being displayed. */
        private int currentPageNumber;
    
        /** Type of log being displayed (default: search). */
        public String logType = LOG_TYPE_SEARCH;
    
        /** Query ID filter for search logs. */
        public String queryId;
    
        /** User session ID filter for search logs. */
        public String userSessionId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

    import org.codelibs.fess.crawler.entity.RequestData;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.entity.UrlQueue;
    import org.codelibs.fess.crawler.log.LogType;
    import org.codelibs.fess.exception.ContainerNotAvailableException;
    import org.codelibs.fess.exception.ContentNotFoundException;
    import org.codelibs.fess.helper.CrawlingConfigHelper;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The log type field for filtering search logs.
         */
        public String logType;
    
        /**
         * The query ID field for searching specific queries.
         */
        public String queryId;
    
        /**
         * The user session ID field for filtering logs by session.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getTimeAdjustTimeMillis();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top