Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for OptionalEntity (0.09 sec)

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

        }
    
        public OptionalEntity<CrawlingInfo> selectEntity(CBCall<CrawlingInfoCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<CrawlingInfo> facadeSelectEntity(CrawlingInfoCB cb) {
            return doSelectOptionalEntity(cb, 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)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<ElevateWordToLabel> selectEntity(CBCall<ElevateWordToLabelCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<ElevateWordToLabel> facadeSelectEntity(ElevateWordToLabelCB cb) {
            return doSelectOptionalEntity(cb, 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)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

        }
    
        public OptionalEntity<JobLog> selectEntity(CBCall<JobLogCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<JobLog> facadeSelectEntity(JobLogCB cb) {
            return doSelectOptionalEntity(cb, 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/config/bsbhv/BsRoleTypeBhv.java

        }
    
        public OptionalEntity<RoleType> selectEntity(CBCall<RoleTypeCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<RoleType> facadeSelectEntity(RoleTypeCB cb) {
            return doSelectOptionalEntity(cb, 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)
  5. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

            }).orElse(Collections.emptyList());
        }
    
        public OptionalEntity<KuromojiFile> getKuromojiFile(final String dictId) {
            return dictionaryManager.getDictionaryFile(dictId).filter(KuromojiFile.class::isInstance)
                    .map(file -> OptionalEntity.of((KuromojiFile) file)).orElse(OptionalEntity.empty());
        }
    
        public OptionalEntity<KuromojiItem> getKuromojiItem(final String dictId, final long id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/AccessTokenService.java

                    return OptionalEntity.of(permissionSet);
                }).orElseThrow(() -> new InvalidAccessTokenException("invalid_token", "Invalid token: " + token));
            }
            return OptionalEntity.empty();
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

        }
    
        public OptionalEntity<FailureUrl> selectEntity(CBCall<FailureUrlCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<FailureUrl> facadeSelectEntity(FailureUrlCB cb) {
            return doSelectOptionalEntity(cb, 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)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java

        }
    
        public OptionalEntity<RelatedQuery> selectEntity(CBCall<RelatedQueryCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<RelatedQuery> facadeSelectEntity(RelatedQueryCB cb) {
            return doSelectOptionalEntity(cb, 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)
  9. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

        }
    
        public OptionalEntity<UserInfo> selectEntity(CBCall<UserInfoCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<UserInfo> facadeSelectEntity(UserInfoCB cb) {
            return doSelectOptionalEntity(cb, typeOfSelectedEntity());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java

    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.es.config.bsbhv.BsScheduledJobBhv;
    import org.codelibs.fess.es.config.exentity.ScheduledJob;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    /**
     * @author FreeGen
     */
    public class ScheduledJobBhv extends BsScheduledJobBhv {
    
        private static final Logger logger = LogManager.getLogger(ScheduledJobBhv.class);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top