Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isFtpRoleFromFile (0.08 seconds)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        }
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
                        if (fessConfig.isSmbRoleFromFile() || fessConfig.isFileRoleFromFile() || fessConfig.isFtpRoleFromFile()) {
                            // head method
                            responseData =
                                    client.execute(RequestDataBuilder.newRequestData().head().url(url).weight(urlQueue.getWeight()).build());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 19.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            final List<String> roleTypeList = new ArrayList<>();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (fessConfig.isFtpRoleFromFile() && responseData.getUrl().startsWith("ftp:")) {
                final String owner = (String) responseData.getMetaDataMap().get(FtpClient.FTP_FILE_USER);
                if (owner != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to get FTP roles from a file.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isFtpRoleFromFile();
    
        /**
         * Get the value for the key 'index.backup.targets'. <br>
         * The value is, e.g. fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top