Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for selectByPK (0.11 sec)

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

            requestHeaderBhv.queryDelete(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
            });
        }
    
        public OptionalEntity<WebConfig> getWebConfig(final String id) {
            return webConfigBhv.selectByPK(id);
        }
    
        public OptionalEntity<WebConfig> getWebConfigByName(final String name) {
            final ListResultBean<WebConfig> list = webConfigBhv.selectList(cb -> {
                cb.query().setName_Equal(name);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

        }
    
        public FailureUrl selectEntityWithDeletedCheck(CBCall<FailureUrlCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<FailureUrl> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<FailureUrl> 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.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java

        }
    
        public RelatedQuery selectEntityWithDeletedCheck(CBCall<RelatedQueryCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<RelatedQuery> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<RelatedQuery> 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.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java

        }
    
        public WebConfig selectEntityWithDeletedCheck(CBCall<WebConfigCB> cbLambda) {
            return facadeSelectEntityWithDeletedCheck(createCB(cbLambda));
        }
    
        public OptionalEntity<WebConfig> selectByPK(String id) {
            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<WebConfig> 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.8K bytes
    - Viewed (0)
Back to top