Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,153 for projectId (0.06 sec)

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

    import jakarta.annotation.Resource;
    
    public class FileConfigService extends FessAppService {
    
        @Resource
        protected FileConfigBhv fileConfigBhv;
    
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        protected boolean existNextPage;
    
        protected boolean existPrevPage;
    
        protected long currentStartRecordNumber;
    
        protected long currentEndRecordNumber;
    
        protected List<String> pageNumberList;
    
        protected String searchQuery;
    
        protected long execTime;
    
        protected FacetResponse facetResponse;
    
        protected boolean partialResults = false;
    
        protected long queryTime;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class LabelTypeService extends FessAppService {
    
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<LabelType> getLabelTypeList(final LabelTypePager labelTypePager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/exbhv/GroupBhv.java

        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
                final String name = ComponentUtil.getFessConfig().getIndexUserIndex();
                indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_user"), name);
            }
            return indexName;
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapUser.java

    import org.dbflute.optional.OptionalThing;
    
    public class LdapUser implements FessUser {
    
        private static final long serialVersionUID = 1L;
    
        protected Hashtable<String, String> env;
    
        protected String name;
    
        protected String[] permissions = null;
    
        public LdapUser(final Hashtable<String, String> env, final String name) {
            this.env = env;
            this.name = name;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<FavoriteLog> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends FavoriteLog> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected FavoriteLogCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<Role> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends Role> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected RoleCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBadWordBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<BadWord> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends BadWord> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected BadWordCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<CrawlingInfoParam> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends CrawlingInfoParam> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected CrawlingInfoParamCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<PathMapping> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends PathMapping> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected PathMappingCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top