Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileAuthenticationDbm (0.41 sec)

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

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

            return "file_authentication";
        }
    
        @Override
        public String asEsSearchType() {
            return "file_authentication";
        }
    
        @Override
        public FileAuthenticationDbm asDBMeta() {
            return FileAuthenticationDbm.getInstance();
        }
    
        @Override
        protected <RESULT extends FileAuthentication> 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)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

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

        //                                                                             =======
        @Override
        public FileAuthenticationDbm asDBMeta() {
            return FileAuthenticationDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "file_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.4K bytes
    - Viewed (0)
Back to top