Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 39 for getSessionId (0.11 seconds)

  1. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

        @Test
        public void test_sessionIdIsUnique() {
            final ChatSession session1 = new ChatSession();
            final ChatSession session2 = new ChatSession();
            assertFalse(session1.getSessionId().equals(session2.getSessionId()));
        }
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-07 01:53
    - 12.6K bytes
    - Click Count (0)
  2. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                file.deleteOnExit();
                fileTransformer.setPath(file.getAbsolutePath());
    
                final Crawler crawler1 = crawlerContainer.getComponent("crawler");
                crawler1.setSessionId(crawler1.getSessionId() + "1");
                crawler1.setBackground(true);
                ((UrlFilterImpl) crawler1.urlFilter).setIncludeFilteringPattern("$1$2$3.*");
                crawler1.addUrl(url1);
    Created: 2026-04-12 03:50
    - Last Modified: 2026-01-15 01:11
    - 13.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java

                    "expiredTime");
            setupEpg(_epgMap, et -> ((CrawlingInfo) et).getName(), (et, vl) -> ((CrawlingInfo) et).setName(DfTypeUtil.toString(vl)), "name");
            setupEpg(_epgMap, et -> ((CrawlingInfo) et).getSessionId(), (et, vl) -> ((CrawlingInfo) et).setSessionId(DfTypeUtil.toString(vl)),
                    "sessionId");
        }
    
        @Override
        public PropertyGateway findPropertyGateway(final String prop) {
    Created: 2026-03-31 13:07
    - Last Modified: 2025-11-27 07:01
    - 8.8K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

                    bindingHash // Security buffer contains the binding information
            );
    
            // Set the session ID of the existing session
            request.setSessionId(getSessionId());
    
            // CRITICAL: Set the binding flag per MS-SMB2
            request.setSessionBinding(true);
    
            // The actual transport send would need proper integration
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-21 11:13
    - 20K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/entity/ChatSession.java

        public ChatSession(final String userId) {
            this();
            this.userId = userId;
        }
    
        /**
         * Gets the session ID.
         *
         * @return the session ID
         */
        public String getSessionId() {
            return sessionId;
        }
    
        /**
         * Sets the session ID.
         *
         * @param sessionId the session ID
         */
        public void setSessionId(final String sessionId) {
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-07 01:53
    - 6.7K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                            crawlerList.get(i).awaitTermination();
                            crawlerStatusList.set(i, Constants.DONE);
                            final String sid = crawlerList.get(i).getCrawlerContext().getSessionId();
                            indexUpdater.addFinishedSessionId(sid);
                            activeCrawlerNum--;
                        }
                    }
                    ThreadUtil.sleep(crawlingExecutionInterval);
    Created: 2026-03-31 13:07
    - Last Modified: 2025-11-28 16:29
    - 25K bytes
    - Click Count (0)
  7. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlFilter.java

         * @param id The ID.
         */
        public void setId(final String id) {
            this.id = id;
        }
    
        /**
         * Returns the session ID.
         * @return The session ID.
         */
        public String getSessionId() {
            return sessionId;
        }
    
        /**
         * Sets the session ID.
         * @param sessionId The session ID.
         */
        public void setSessionId(final String sessionId) {
    Created: 2026-04-12 03:50
    - Last Modified: 2025-07-06 02:13
    - 3.6K bytes
    - Click Count (0)
  8. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java

         */
        @Override
        public void prepare(final CommonServerMessageBlockRequest next) {
            if (isReceived()) {
                next.setSessionId(getSessionId());
            }
            super.prepare(next);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#isErrorResponseStatus()
         */
        @Override
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 4.8K bytes
    - Click Count (1)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

        protected long maxAccessCount = 0;
    
        /**
         * Returns the session ID.
         * @return The session ID.
         */
        public String getSessionId() {
            return sessionId;
        }
    
        /**
         * Sets the session ID.
         * @param sessionId The session ID.
         */
        public void setSessionId(final String sessionId) {
    Created: 2026-04-12 03:50
    - Last Modified: 2025-12-31 09:07
    - 9K bytes
    - Click Count (0)
  10. src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java

            this.flags = flags;
        }
    
        /**
         * Gets the session ID associated with this encrypted message
         *
         * @return the session ID
         */
        public long getSessionId() {
            return this.sessionId;
        }
    
        /**
         * Sets the session ID for this encrypted message
         *
         * @param sessionId
         *            the session ID to set
         */
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-30 05:58
    - 9.1K bytes
    - Click Count (0)
Back to Top