- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 61 for selectByPK (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
} public CrawlingInfo selectEntityWithDeletedCheck(CBCall<CrawlingInfoCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<CrawlingInfo> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<CrawlingInfo> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordBhv.java
} public ElevateWord selectEntityWithDeletedCheck(CBCall<ElevateWordCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<ElevateWord> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<ElevateWord> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java
} public PathMapping selectEntityWithDeletedCheck(CBCall<PathMappingCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<PathMapping> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<PathMapping> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
* @param id The bad word ID. * @return Optional entity containing the bad word if found. */ public OptionalEntity<BadWord> getBadWord(final String id) { return badWordBhv.selectByPK(id); } /** * Stores (inserts or updates) a bad word. * @param badWord The bad word to store. */ public void store(final BadWord badWord) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
public FileAuthentication selectEntityWithDeletedCheck(CBCall<FileAuthenticationCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<FileAuthentication> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<FileAuthentication> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* * @param id the unique identifier of the user * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUser(final String id) { return userBhv.selectByPK(id).map(u -> ComponentUtil.getAuthenticationManager().load(u)); } /** * Retrieves a user by their username. * * @param username the username to search forRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileConfigBhv.java
} public FileConfig selectEntityWithDeletedCheck(CBCall<FileConfigCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<FileConfig> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<FileConfig> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java
} public SearchLog selectEntityWithDeletedCheck(CBCall<SearchLogCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<SearchLog> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<SearchLog> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
} public User selectEntityWithDeletedCheck(CBCall<UserCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<User> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<User> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* @return an OptionalEntity containing the CrawlingInfo if found, empty otherwise */ public OptionalEntity<CrawlingInfo> getCrawlingInfo(final String id) { return crawlingInfoBhv.selectByPK(id); } /** * Stores (inserts or updates) a crawling information record. * Sets up the store conditions including creation time if not already set,Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)