- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for logType (0.06 sec)
-
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) -
src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp
</c:if> <c:if test="${logType.startsWith('search_keyword_') or logType.startsWith('search_zerohit_')} or logType.endsWith('_count_agg')}"> <th><la:message key="labels.searchlog_value"/></th>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 16K bytes - Viewed (0) -
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) -
src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.9K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
src/main/resources/fess_env_crawler.properties
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0)