Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCreatedAt (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/entity/ChatSession.java

            this.userId = userId;
        }
    
        /**
         * Gets the creation timestamp.
         *
         * @return the creation timestamp
         */
        public LocalDateTime getCreatedAt() {
            return createdAt;
        }
    
        /**
         * Sets the creation timestamp.
         *
         * @param createdAt the creation timestamp
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                            final UserInfo oldUserInfo = userInfoMap.get(code);
                            if (oldUserInfo != null) {
                                userInfo.setCreatedAt(oldUserInfo.getCreatedAt());
                            }
                            userInfoMap.put(code, userInfo);
                        });
                        searchLogList.add(searchLog);
                    }
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
Back to Top