Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setProcessType_InScope (0.27 sec)

  1. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

        public List<PathMapping> getPathMappingList(final Collection<String> processTypeList) {
    
            return pathMappingBhv.selectList(cb -> {
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().setProcessType_InScope(processTypeList);
                cb.fetchFirst(fessConfig.getPagePathMappingMaxFetchSizeAsInteger());
            });
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                cachedPathMappingList = pathMappingBhv.selectList(cb -> {
                    cb.query().addOrderBy_SortOrder_Asc();
                    cb.query().setProcessType_InScope(ptList);
                    cb.fetchFirst(ComponentUtil.getFessConfig().getPagePathMappingMaxFetchSizeAsInteger());
                });
                if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsPathMappingCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setProcessType_InScope(Collection<String> processTypeList) {
            setProcessType_Terms(processTypeList, null);
        }
    
        public void setProcessType_InScope(Collection<String> processTypeList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            setProcessType_Terms(processTypeList, opLambda);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 72.1K bytes
    - Viewed (0)
Back to top