Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setWebProtocols (0.06 sec)

  1. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            GsaConfigParser parser = new GsaConfigParser();
    
            String[] customWebProtocols = { "http:", "https:", "ftp:" };
            String[] customFileProtocols = { "file:", "smb:" };
    
            parser.setWebProtocols(customWebProtocols);
            parser.setFileProtocols(customFileProtocols);
    
            assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", true, false));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        }
    
        /**
         * Sets the array of web protocols to recognize for URL classification.
         *
         * @param webProtocols array of protocol prefixes (e.g., "http:", "https:")
         */
        public void setWebProtocols(final String[] webProtocols) {
            this.webProtocols = webProtocols;
        }
    
        /**
         * Sets the array of file protocols to recognize for URL classification.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top