- Sort Score
- Result 10 results
- Languages All
Results 31 - 35 of 35 for addFieldToSource (0.11 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java
if (crawlingInfoId != null) { addFieldToSource(sourceMap, "crawlingInfoId", crawlingInfoId); } if (createdTime != null) { addFieldToSource(sourceMap, "createdTime", createdTime); } if (key != null) { addFieldToSource(sourceMap, "key", key); } if (value != null) { addFieldToSource(sourceMap, "value", value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java
@Override public Map<String, Object> toSource() { Map<String, Object> sourceMap = new HashMap<>(); if (name != null) { addFieldToSource(sourceMap, "name", name); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java
return sourceMap; } @Override protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) { if (value instanceof final LocalDateTime ldt) { final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault()); super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.java
if (elevateWordId != null) { addFieldToSource(sourceMap, "elevateWordId", elevateWordId); } if (labelTypeId != null) { addFieldToSource(sourceMap, "labelTypeId", labelTypeId); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java
Map<String, Object> sourceMap = new HashMap<>(); if (gidNumber != null) { addFieldToSource(sourceMap, "gidNumber", gidNumber); } if (name != null) { addFieldToSource(sourceMap, "name", name); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.3K bytes - Viewed (0)