Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for selectByPK (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedContentBhv.java

        public RelatedContent selectEntityWithDeletedCheck(CBCall<RelatedContentCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<RelatedContent> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<RelatedContent> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

        }
    
        public FavoriteLog selectEntityWithDeletedCheck(CBCall<FavoriteLogCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<FavoriteLog> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<FavoriteLog> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, 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)
  4. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

        }
    
        public Role selectEntityWithDeletedCheck(CBCall<RoleCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<Role> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<Role> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/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: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            return badWordList;
        }
    
        public OptionalEntity<BadWord> getBadWord(final String id) {
            return badWordBhv.selectByPK(id);
        }
    
        public void store(final BadWord badWord) {
    
            badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        public void delete(final BadWord badWord) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

        public WebAuthentication selectEntityWithDeletedCheck(CBCall<WebAuthenticationCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<WebAuthentication> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<WebAuthentication> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, 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)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsScheduledJobBhv.java

        }
    
        public ScheduledJob selectEntityWithDeletedCheck(CBCall<ScheduledJobCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<ScheduledJob> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<ScheduledJob> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top