Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SmbAuthenticationHolder (0.1 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java

     * This allows for different SMB shares to use different authentication credentials.</p>
     *
     */
    public class SmbAuthenticationHolder {
        private final Map<String, SmbAuthentication> authMap = new HashMap<>();
    
        /**
         * Creates a new SmbAuthenticationHolder instance.
         */
        public SmbAuthenticationHolder() {
            super();
        }
    
        /**
         * Adds an SMB authentication configuration to the holder.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolder.java

     */
    public class SmbAuthenticationHolder {
        private static final Logger logger = LogManager.getLogger(SmbAuthenticationHolder.class);
    
        /** Map of path prefixes to SMB authentication configurations. */
        private final Map<String, SmbAuthentication> authMap = new HashMap<>();
    
        /**
         * Creates a new SmbAuthenticationHolder instance.
         */
        public SmbAuthenticationHolder() {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

        }
    
        /**
         * Sets the SMB1 authentication holder.
         *
         * @param smbAuthenticationHolder the SMB1 authentication holder to set
         */
        public void setSmbAuthenticationHolder(final SmbAuthenticationHolder smbAuthenticationHolder) {
            this.smbAuthenticationHolder = smbAuthenticationHolder;
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

        }
    
        /**
         * Sets the SMB authentication holder.
         *
         * @param smbAuthenticationHolder the SMB authentication holder to set
         */
        public void setSmbAuthenticationHolder(final SmbAuthenticationHolder smbAuthenticationHolder) {
            this.smbAuthenticationHolder = smbAuthenticationHolder;
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
Back to top