Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fileAuthenticationBhv (0.28 sec)

  1. src/main/java/org/codelibs/fess/es/config/exbhv/FileAuthenticationBhv.java

    import java.util.regex.Pattern;
    
    import org.codelibs.fess.es.config.bsbhv.BsFileAuthenticationBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class FileAuthenticationBhv extends BsFileAuthenticationBhv {
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

    public class FileAuthenticationService {
    
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<FileAuthentication> getFileAuthenticationList(final FileAuthPager fileAuthenticationPager) {
    
            final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

    import org.dbflute.optional.OptionalEntity;
    
    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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/main/resources/esflute_config.xml

    	<component name="failureUrlBhv" class="org.codelibs.fess.es.config.exbhv.FailureUrlBhv"/>
    	<component name="fileAuthenticationBhv" class="org.codelibs.fess.es.config.exbhv.FileAuthenticationBhv"/>
    	<component name="fileConfigBhv" class="org.codelibs.fess.es.config.exbhv.FileConfigBhv"/>
    	<component name="jobLogBhv" class="org.codelibs.fess.es.config.exbhv.JobLogBhv"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Nov 28 12:59:14 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileAuthenticationDbm.java

            return "org.codelibs.fess.es.config.cbean.FileAuthenticationCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.es.config.exbhv.FileAuthenticationBhv";
        }
    
        // ===================================================================================
        //                                                                         Object Type
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top