Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for selectByPK (0.06 sec)

  1. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * @throws IllegalArgumentException if id is null or empty
         */
        public OptionalEntity<DataConfig> getDataConfig(final String id) {
            return dataConfigBhv.selectByPK(id);
        }
    
        /**
         * Retrieves a data configuration by its name.
         *
         * <p>If multiple configurations exist with the same name, returns the first one
         * ordered by sort order ascending.</p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsUserInfoBhv.java

        }
    
        public UserInfo selectEntityWithDeletedCheck(CBCall<UserInfoCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<UserInfo> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<UserInfo> 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.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoParamBhv.java

        public CrawlingInfoParam selectEntityWithDeletedCheck(CBCall<CrawlingInfoParamCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<CrawlingInfoParam> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<CrawlingInfoParam> 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)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRoleTypeBhv.java

        }
    
        public RoleType selectEntityWithDeletedCheck(CBCall<RoleTypeCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<RoleType> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<RoleType> 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)
  6. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            final LocalDateTime now = ComponentUtil.getSystemHelper().getCurrentTimeAsLocalDateTime();
            final UserInfo userInfo = userInfoBhv.selectByPK(userCode).map(e -> {
                e.setUpdatedAt(now);
                return e;
            }).orElseGet(() -> {
                final UserInfo e = new UserInfo();
                e.setId(userCode);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top