Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FtpAuthenticationHolder (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java

     */
    package org.codelibs.fess.crawler.client.ftp;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * @author shinsuke
     *
     */
    public class FtpAuthenticationHolder {
        List<FtpAuthentication> authList = new ArrayList<>();
    
        public void add(final FtpAuthentication auth) {
            authList.add(auth);
        }
    
        public FtpAuthentication get(final String path) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top