Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 30 for getSessionId (0.07 seconds)

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

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfo.java

            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    
        public String getSessionId() {
            checkSpecifiedProperty("sessionId");
            return convertEmptyToNull(sessionId);
        }
    
        public void setSessionId(String value) {
            registerModifiedProperty("sessionId");
    Created: 2026-03-31 13:07
    - Last Modified: 2025-03-15 06:53
    - 5.3K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java

            if (!initializedData) {
                final OpenSearchDataService dataService = SingletonLaContainer.getComponent(OpenSearchDataService.class);
                final OpenSearchAccessResult accessResult = dataService.getAccessResult(getSessionId(), getUrl());
                if (accessResult != null && accessResult.accessResultData != null) {
                    setAccessResultData(accessResult.accessResultData);
                } else {
    Created: 2026-04-12 03:50
    - Last Modified: 2025-07-06 02:13
    - 6.5K bytes
    - Click Count (0)
  10. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            final String url = getUrl(target);
            if (url == null) {
                throw new OpenSearchAccessException("url is null.");
            }
            final String id = getId(getSessionId(target), url);
            try (final XContentBuilder source = getXContentBuilder(target)) {
                final IndexResponse response = getClient().get(c -> c.prepareIndex()
                        .setIndex(index)
    Created: 2026-04-12 03:50
    - Last Modified: 2025-11-20 08:40
    - 34.3K bytes
    - Click Count (0)
Back to Top