- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 118 for OptionalEntity (0.18 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
final WebConfig webConfig = new WebConfig(); webConfig.setId("01T"); webConfig.setName("__TEMPLATE__"); return OptionalEntity.of(webConfig); } }, WebConfigService.class.getCanonicalName()); ComponentUtil.register(new FileConfigService() { @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 23.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java
} public OptionalEntity<CrawlingInfo> selectEntity(CBCall<CrawlingInfoCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<CrawlingInfo> facadeSelectEntity(CrawlingInfoCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java
return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<ElevateWordToLabel> selectEntity(CBCall<ElevateWordToLabelCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<ElevateWordToLabel> facadeSelectEntity(ElevateWordToLabelCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java
} public OptionalEntity<JobLog> selectEntity(CBCall<JobLogCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<JobLog> facadeSelectEntity(JobLogCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsRoleTypeBhv.java
} public OptionalEntity<RoleType> selectEntity(CBCall<RoleTypeCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<RoleType> facadeSelectEntity(RoleTypeCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java
public int selectCount(CBCall<ThumbnailQueueCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<ThumbnailQueue> selectEntity(CBCall<ThumbnailQueueCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<ThumbnailQueue> facadeSelectEntity(ThumbnailQueueCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
}).orElse(Collections.emptyList()); } public OptionalEntity<KuromojiFile> getKuromojiFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId).filter(KuromojiFile.class::isInstance) .map(file -> OptionalEntity.of((KuromojiFile) file)).orElse(OptionalEntity.empty()); } public OptionalEntity<KuromojiItem> getKuromojiItem(final String dictId, final long id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java
return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<FileAuthentication> selectEntity(CBCall<FileAuthenticationCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<FileAuthentication> facadeSelectEntity(FileAuthenticationCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java
} public OptionalEntity<FileConfig> selectEntity(CBCall<FileConfigCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<FileConfig> facadeSelectEntity(FileConfigCB cb) { return doSelectOptionalEntity(cb, typeOfSelectedEntity()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
return OptionalEntity.of(permissionSet); }).orElseThrow(() -> new InvalidAccessTokenException("invalid_token", "Invalid token: " + token)); } return OptionalEntity.empty(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.6K bytes - Viewed (0)