Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for userSessionId (0.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                return redirect(ErrorAction.class);
            }
    
            if (fessConfig.isSearchLog()) {
                final String userSessionId = userInfoHelper.getUserCode();
                if (userSessionId != null) {
                    final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper();
                    final ClickLog clickLog = new ClickLog();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsentity/BsClickLog.java

            this.url = value;
        }
    
        public String getUserSessionId() {
            checkSpecifiedProperty("userSessionId");
            return convertEmptyToNull(userSessionId);
        }
    
        public void setUserSessionId(String value) {
            registerModifiedProperty("userSessionId");
            this.userSessionId = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/exentity/ClickLog.java

        @Override
        public String toString() {
            return "ClickLog [queryRequestedAt=" + queryRequestedAt + ", requestedAt=" + requestedAt + ", queryId=" + queryId + ", docId="
                    + docId + ", userSessionId=" + userSessionId + ", url=" + url + ", order=" + order + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "click";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String logType = LOG_TYPE_SEARCH;
    
        public String queryId;
    
        public String userSessionId;
    
        public String requestedTimeRange;
    
        public String accessType;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java

                    + Arrays.toString(roles) + ", searchWord=" + searchWord + ", user=" + user + ", userAgent=" + userAgent + ", userInfoId="
                    + userInfoId + ", userSessionId=" + userSessionId + ", virtualHost=" + virtualHost + ", documents=" + documentList + "]";
        }
    
        @Override
        public String getEventType() {
            return "log";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/main/config/es/fess_log_search_log.json

                "type" : "keyword"
              },
              "userAgent" : {
                "type" : "keyword"
              },
              "userInfoId" : {
                "type" : "keyword"
              },
              "userSessionId" : {
                "type" : "keyword"
              },
              "virtualHost" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_log.click_log/click_log.json

    {
        "properties": {
          "urlId": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "order": {
            "type": "integer"
          },
          "requestedAt": {
            "type": "date",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Feb 24 22:07:26 UTC 2019
    - 544 bytes
    - Viewed (0)
  8. src/main/config/es/fess_log_click_log.json

              },
              "requestedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "url" : {
                "type" : "keyword"
              },
              "userSessionId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021059710",
            "number_of_shards" : "5",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Jun 30 05:55:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          },
          "userAgent": {
            "type": "keyword"
          },
          "referer": {
            "type": "keyword"
          },
          "clientIp": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "accessType": {
            "type": "keyword"
          },
          "userInfoId": {
            "type": "keyword"
          },
          "languages" : {
            "type" : "keyword"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author shinsuke
     */
    public class SearchForm {
    
        public String logType;
    
        public String queryId;
    
        public String userSessionId;
    
        public String requestedTimeRange;
    
        public String accessType;
    
        public String size;
    
        public void setPageSize(final int size) {
            this.size = Integer.toString(size);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top