- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 61 for selectByPK (0.07 sec)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
* @return Optional containing the web authentication if found */ public OptionalEntity<WebAuthentication> getWebAuthentication(final String id) { return webAuthenticationBhv.selectByPK(id); } /** * Stores a web authentication configuration. * Parameters are encrypted before storage. * * @param webAuthentication The web authentication configuration to store */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
* Get the access token. * @param id The ID of the access token. * @return The access token. */ public OptionalEntity<AccessToken> getAccessToken(final String id) { return accessTokenBhv.selectByPK(id); } /** * Store the access token. * @param accessToken The access token. */ public void store(final AccessToken accessToken) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
* @return an OptionalEntity containing the RelatedQuery if found, or empty if not found */ public OptionalEntity<RelatedQuery> getRelatedQuery(final String id) { return relatedQueryBhv.selectByPK(id); } /** * Stores (inserts or updates) a related query in the database. * After storing, the related query helper is updated to refresh the cache. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
return OptionalEntity.empty(); } if (userInfo == null) { final UserInfoBhv userInfoBhv = ComponentUtil.getComponent(UserInfoBhv.class); userInfo = userInfoBhv.selectByPK(getUserInfoId()); } return userInfo; } public void setUserInfo(final OptionalEntity<UserInfo> userInfo) { this.userInfo = userInfo; userInfo.ifPresent(e -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* @return an OptionalEntity containing the request header if found, empty otherwise */ public OptionalEntity<RequestHeader> getRequestHeader(final String id) { return requestHeaderBhv.selectByPK(id); } /** * Stores a request header configuration to the database. * This method performs either insert or update based on whether the request header already exists. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
* @return OptionalEntity containing the elevate word if found, or empty if not found */ public OptionalEntity<ElevateWord> getElevateWord(final String id) { return elevateWordBhv.selectByPK(id).map(entity -> { final List<ElevateWordToLabel> wctltmList = elevateWordToLabelBhv.selectList(wctltmCb -> { wctltmCb.query().setElevateWordId_Equal(entity.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* @return an OptionalEntity containing the file configuration if found, empty otherwise */ public OptionalEntity<FileConfig> getFileConfig(final String id) { return fileConfigBhv.selectByPK(id); } /** * Retrieves a file configuration by its name. * If multiple configurations exist with the same name, returns the first one * ordered by sort order. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsBadWordBhv.java
} public BadWord selectEntityWithDeletedCheck(CBCall<BadWordCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<BadWord> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<BadWord> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }
Registered: Thu Sep 04 12:52:25 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/BsBoostDocumentRuleBhv.java
public BoostDocumentRule selectEntityWithDeletedCheck(CBCall<BoostDocumentRuleCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<BoostDocumentRule> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<BoostDocumentRule> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsDuplicateHostBhv.java
public DuplicateHost selectEntityWithDeletedCheck(CBCall<DuplicateHostCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<DuplicateHost> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<DuplicateHost> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0)