Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testdatastore (0.04 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         *
         * @param name the name of the data store to retrieve, may be null
         * @return the data store instance if found, null if not found or name is null
         */
        public DataStore getDataStore(final String name) {
            if (name == null) {
                return null;
            }
            return dataStoreMap.get(name.toLowerCase(Locale.ROOT));
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top