Example usage for org.apache.commons.net.ftp FTPClientConfig FTPClientConfig

List of usage examples for org.apache.commons.net.ftp FTPClientConfig FTPClientConfig

Introduction

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

Prototype

public FTPClientConfig(String systemKey, String defaultDateFormatStr, String recentDateFormatStr,
        String serverLanguageCode, String shortMonthNames, String serverTimeZoneId) 

Source Link

Document

Constructor which allows setting of all member fields

Usage

From source file:jlib.misc.MVSFTPEntryParser.java

protected FTPClientConfig getDefaultConfiguration() {
    return new FTPClientConfig(FTPClientConfig.SYST_MVS, DEFAULT_DATE_FORMAT, null, null, null, null);
}

From source file:ch.cyberduck.core.ftp.parser.CommonUnixFTPEntryParser.java

/**
 * Defines a default configuration to be used when this class is
 * instantiated without a {@link  FTPClientConfig  FTPClientConfig}
 * parameter being specified.//from  w w w . j a v  a 2 s.c om
 *
 * @return the default configuration for this parser.
 */
@Override
protected FTPClientConfig getDefaultConfiguration() {
    final FTPClientConfig config = new FTPClientConfig(FTPClientConfig.SYST_UNIX,
            FTPTimestampParser.DEFAULT_SDF, FTPTimestampParser.DEFAULT_RECENT_SDF, null, null, null);
    config.setLenientFutureDates(true);
    return config;
}

From source file:com.ai.api.util.UnixFTPEntryParser.java

/**
 * Defines a default configuration to be used when this class is
 * instantiated without a {@link  FTPClientConfig  FTPClientConfig}
 * parameter being specified./*from  w  w  w  .  jav a  2s . c o m*/
 * @return the default configuration for this parser.
 */
protected FTPClientConfig getDefaultConfiguration() {
    return new FTPClientConfig(FTPClientConfig.SYST_UNIX, DEFAULT_DATE_FORMAT, DEFAULT_RECENT_DATE_FORMAT, null,
            null, null);
}