Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getChildUrlSet (0.75 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java

            this.transformerName = transformerName;
        }
    
        /**
         * Get the child URL set.
         * @return childUrlSet
         */
        public Set<RequestData> getChildUrlSet() {
            return childUrlSet;
        }
    
        /**
         * Set the child URL set.
         * @param childUrlSet the set of request data to set as child URLs
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            // Execute - should not throw any exception
            processor.process(responseData);
    
            // Verify child URLs are unchanged
            assertEquals(2, responseData.getChildUrlSet().size());
        }
    
        public void test_noOpBehavior() {
            // Verify that NullResponseProcessor truly does nothing
            NullResponseProcessor processor = new NullResponseProcessor();
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top