Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getQueryId (0.1 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                        final StringBuilder buf = new StringBuilder();
                        buf.append('{');
                        appendJson("id", entity.getId(), buf).append(',');
                        appendJson("query-id", entity.getQueryId(), buf).append(',');
                        appendJson("user-info-id", entity.getUserInfoId(), buf).append(',');
                        appendJson("user-session-id", entity.getUserSessionId(), buf).append(',');
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected List<Map<String, Object>> facetField;
            protected List<Map<String, Object>> facetQuery;
    
            public ApiDocsResponse renderData(final SearchRenderData data) {
                queryId = data.getQueryId();
                docs = data.getDocumentItems();
                highlightParams = data.getAppendHighlightParams();
                execTime = data.getExecTime();
                pageSize = data.getPageSize();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                try {
                    final SearchLogBhv searchLogBhv = ComponentUtil.getComponent(SearchLogBhv.class);
                    searchLogBhv.selectEntity(cb -> {
                        cb.query().setQueryId_Equal(clickLog.getQueryId());
                    }).ifPresent(entity -> {
                        clickLogList.add(clickLog);
                        final String docId = clickLog.getDocId();
                        Integer countObj = clickCountMap.get(docId);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final List<Map<String, Object>> documentItems = data.getDocumentItems();
                final FacetResponse facetResponse = data.getFacetResponse();
                final String queryId = data.getQueryId();
                final String highlightParams = data.getAppendHighlightParams();
                final boolean nextPage = data.isExistNextPage();
                final boolean prevPage = data.isExistPrevPage();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top