Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WebAuthenticationDbm (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java

        //                                                                           =========
        private static final WebAuthenticationDbm _instance = new WebAuthenticationDbm();
    
        private WebAuthenticationDbm() {
        }
    
        public static WebAuthenticationDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

        //                                                                             =======
        @Override
        public WebAuthenticationDbm asDBMeta() {
            return WebAuthenticationDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "web_authentication";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

        //                                                                             =======
        @Override
        public WebAuthenticationDbm asDBMeta() {
            return WebAuthenticationDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "web_authentication";
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

            return "web_authentication";
        }
    
        @Override
        public String asEsSearchType() {
            return "web_authentication";
        }
    
        @Override
        public WebAuthenticationDbm asDBMeta() {
            return WebAuthenticationDbm.getInstance();
        }
    
        @Override
        protected <RESULT extends WebAuthentication> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
            try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top