Example usage for org.apache.commons.net.ftp FTPFileFilter interface-usage

List of usage examples for org.apache.commons.net.ftp FTPFileFilter interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.net.ftp FTPFileFilter interface-usage.

Usage

From source file dhz.skz.citaci.weblogger.WlFileFilter.java

/**
 *
 * @author kraljevic
 */
public class WlFileFilter implements FTPFileFilter {

From source file dhz.skz.citaci.weblogger.zerospan.WlZeroSpanFileFilter.java

/**
 *
 * @author kraljevic
 */
class WlZeroSpanFileFilter implements FTPFileFilter {
    private static final Logger log = Logger.getLogger(WlZeroSpanFileFilter.class.getName());

From source file org.mousephenotype.dcc.crawler.ZipFileFilter.java

/**
 * Used by the FTP crawler for filtering out zip files.
 *
 * @author Gagarine Yaikhom <g.yaikhom@har.mrc.ac.uk>
 */
public class ZipFileFilter implements FTPFileFilter {

From source file org.tinygroup.vfs.impl.FtpFileFilterByName.java

/**
 * ??????ftp?
 * @author wanggf10141
 *
 */
public class FtpFileFilterByName implements FTPFileFilter {

From source file fr.acxio.tools.agia.ftp.RegexFilenameFilter.java

public class RegexFilenameFilter implements FTPFileFilter, FilenameFilter {

    private Pattern pattern;

    public void setRegex(String sRegex) {
        pattern = Pattern.compile(sRegex);

From source file org.sofun.platform.opta.ftp.FTPFileFilterImpl.java

/**
 * FTP File Filter Implementation.
 * 
 * <p>
 * 
 * Takes into account feed processing information specifics (in case feeds have

From source file de.ep3.ftpc.model.CrawlerDirectory.java

/**
 * Represents a single (FTP) directory and manages the list of files and sub directories within it.
 *
 * This is a state machine, as it remembers the current position and advances on getNextFile() calls.
 */
public class CrawlerDirectory implements FTPFileFilter {

From source file uk.co.marcoratto.net.ClientFTP.java

public class ClientFTP implements FTPFileFilter {

    private final static Logger logger = Logger.getLogger("uk.co.marcoratto.ftp");
    private final static int DEFAULT_BUFFER_SIZE = 1024;

    private FTPClient ftp = null;