Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WebAuthenticationBhv (0.41 sec)

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

    import java.util.regex.Pattern;
    
    import org.codelibs.fess.es.config.bsbhv.BsWebAuthenticationBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class WebAuthenticationBhv extends BsWebAuthenticationBhv {
        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/WebAuthenticationService.java

    public class WebAuthenticationService {
    
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
    
            final PagingResultBean<WebAuthentication> webAuthenticationList = webAuthenticationBhv.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/WebConfigService.java

    import org.dbflute.optional.OptionalEntity;
    
    public class WebConfigService extends FessAppService {
    
        @Resource
        protected WebConfigBhv webConfigBhv;
    
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        @Resource
        protected RequestHeaderBhv requestHeaderBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/resources/esflute_config.xml

    	<component name="thumbnailQueueBhv" class="org.codelibs.fess.es.config.exbhv.ThumbnailQueueBhv"/>
    	<component name="webAuthenticationBhv" class="org.codelibs.fess.es.config.exbhv.WebAuthenticationBhv"/>
    	<component name="webConfigBhv" class="org.codelibs.fess.es.config.exbhv.WebConfigBhv"/>
    
    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/WebAuthenticationDbm.java

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