Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for selectList (0.11 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

        }
    
        @Override
        protected Class<FileAuthenticationCB> typeOfHandlingConditionBean() {
            return FileAuthenticationCB.class;
        }
    
        public ListResultBean<FileAuthentication> selectList(CBCall<FileAuthenticationCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileAuthentication> selectPage(CBCall<FileAuthenticationCB> cbLambda) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                    return OptionalEntity.of(mappingItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        @Override
        public synchronized PagingList<CharMappingItem> selectList(final int offset, final int size) {
            if (mappingItemList == null) {
                reload(null);
            }
    
            if (offset >= mappingItemList.size() || offset < 0) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            return webConfigBhv.selectByPK(id);
        }
    
        public OptionalEntity<WebConfig> getWebConfigByName(final String name) {
            final ListResultBean<WebConfig> list = webConfigBhv.selectList(cb -> {
                cb.query().setName_Equal(name);
                cb.query().addOrderBy_SortOrder_Asc();
            });
            if (list.isEmpty()) {
                return OptionalEntity.empty();
            }
    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/BsFailureUrlBhv.java

            return FailureUrl.class;
        }
    
        @Override
        protected Class<FailureUrlCB> typeOfHandlingConditionBean() {
            return FailureUrlCB.class;
        }
    
        public ListResultBean<FailureUrl> selectList(CBCall<FailureUrlCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FailureUrl> selectPage(CBCall<FailureUrlCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java

        }
    
        @Override
        protected Class<RelatedQueryCB> typeOfHandlingConditionBean() {
            return RelatedQueryCB.class;
        }
    
        public ListResultBean<RelatedQuery> selectList(CBCall<RelatedQueryCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<RelatedQuery> selectPage(CBCall<RelatedQueryCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

            return UserInfo.class;
        }
    
        @Override
        protected Class<UserInfoCB> typeOfHandlingConditionBean() {
            return UserInfoCB.class;
        }
    
        public ListResultBean<UserInfo> selectList(CBCall<UserInfoCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<UserInfo> selectPage(CBCall<UserInfoCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

            return FileConfig.class;
        }
    
        @Override
        protected Class<FileConfigCB> typeOfHandlingConditionBean() {
            return FileConfigCB.class;
        }
    
        public ListResultBean<FileConfig> selectList(CBCall<FileConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileConfig> selectPage(CBCall<FileConfigCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

            }
            load();
        }
    
        public List<RelatedContent> getAvailableRelatedContentList() {
            return ComponentUtil.getComponent(RelatedContentBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Term_Asc();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java

            return DataConfig.class;
        }
    
        @Override
        protected Class<DataConfigCB> typeOfHandlingConditionBean() {
            return DataConfigCB.class;
        }
    
        public ListResultBean<DataConfig> selectList(CBCall<DataConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<DataConfig> selectPage(CBCall<DataConfigCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

            return LabelType.class;
        }
    
        @Override
        protected Class<LabelTypeCB> typeOfHandlingConditionBean() {
            return LabelTypeCB.class;
        }
    
        public ListResultBean<LabelType> selectList(CBCall<LabelTypeCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<LabelType> selectPage(CBCall<LabelTypeCB> cbLambda) {
            // #pending same?
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top