- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 61 for selectByPK (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java
} public JobLog selectEntityWithDeletedCheck(CBCall<JobLogCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<JobLog> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<JobLog> 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.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
* @param id The ID of the scheduled job. * @return An optional entity of the scheduled job. */ public OptionalEntity<ScheduledJob> getScheduledJob(final String id) { return scheduledJobBhv.selectByPK(id); } /** * Deletes a scheduled job. * @param scheduledJob The scheduled job to delete. */ public void delete(final ScheduledJob scheduledJob) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
* @param id The ID of the web configuration * @return Optional containing the web configuration if found */ public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } /** * Gets a web configuration by its name. * If multiple configurations have 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 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* @throws IllegalArgumentException if id is null or empty */ public OptionalEntity<DuplicateHost> getDuplicateHost(final String id) { return duplicateHostBhv.selectByPK(id); } /** * Stores (inserts or updates) a duplicate host configuration. * * <p>This method immediately refreshes the index to ensure the change is visible.
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/BsDataConfigBhv.java
} public DataConfig selectEntityWithDeletedCheck(CBCall<DataConfigCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<DataConfig> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<DataConfig> 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.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsLabelTypeBhv.java
} public LabelType selectEntityWithDeletedCheck(CBCall<LabelTypeCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<LabelType> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<LabelType> 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) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
* * @param id the unique identifier of the job log * @return an optional entity containing the job log if found */ public OptionalEntity<JobLog> getJobLog(final String id) { return jobLogBhv.selectByPK(id); } /** * Stores a job log entry in the database. * Performs an insert or update operation based on whether the job log already exists. * * @param jobLog the job log to store
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsAccessTokenBhv.java
} public AccessToken selectEntityWithDeletedCheck(CBCall<AccessTokenCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<AccessToken> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<AccessToken> 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) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordToLabelBhv.java
public ElevateWordToLabel selectEntityWithDeletedCheck(CBCall<ElevateWordToLabelCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<ElevateWordToLabel> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<ElevateWordToLabel> 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.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsKeyMatchBhv.java
} public KeyMatch selectEntityWithDeletedCheck(CBCall<KeyMatchCB> cbLambda) { return facadeSelectEntityWithDeletedCheck(createCB(cbLambda)); } public OptionalEntity<KeyMatch> selectByPK(String id) { return facadeSelectByPK(id); } protected OptionalEntity<KeyMatch> 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.7K bytes - Viewed (0)