- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getLabelTypes (0.08 sec)
-
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
return OptionalUtil.ofNullable(webConfig); } public OptionalEntity<FileConfig> getFileConfig() { return OptionalUtil.ofNullable(fileConfig); } public LabelType[] getLabelTypes() { return labelList.toArray(new LabelType[labelList.size()]); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
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())); } private void importSystemProperties(final String fileName, final File tempFile) { try (final InputStream in = new FileInputStream(tempFile)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0)