Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setUserId (0.04 seconds)

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

         * @return the user ID
         */
        public String getUserId() {
            return userId;
        }
    
        /**
         * Sets the user ID.
         *
         * @param userId the user ID
         */
        public void setUserId(final String userId) {
            this.userId = userId;
        }
    
        /**
         * Gets the creation timestamp.
         *
         * @return the creation timestamp
         */
        public LocalDateTime getCreatedAt() {
    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/test/java/org/codelibs/fess/entity/ChatSessionTest.java

            final LocalDateTime lastAccessedAt = LocalDateTime.of(2025, 1, 1, 11, 0);
            final List<ChatMessage> messages = new ArrayList<>();
    
            session.setSessionId("session-456");
            session.setUserId("user-789");
            session.setCreatedAt(createdAt);
            session.setLastAccessedAt(lastAccessedAt);
            session.setMessages(messages);
    
            assertEquals("session-456", session.getSessionId());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top