Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLabelTypes (1.93 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                configParser.getWebConfig().ifPresent(c -> webConfigBhv.insert(c));
                configParser.getFileConfig().ifPresent(c -> fileConfigBhv.insert(c));
                labelTypeBhv.batchInsert(Arrays.stream(configParser.getLabelTypes()).collect(Collectors.toList()));
    
                if (logger.isInfoEnabled()) {
                    logger.info("GSA XML import completed successfully: fileName={}", fileName);
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 32.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * Each label type represents a collection with its own URL filtering rules.
         *
         * @return an array of label types representing the parsed collections
         */
        public LabelType[] getLabelTypes() {
            return labelList.toArray(new LabelType[labelList.size()]);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
Back to top