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

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

Introduction

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

Prototype

public String getServerTimeZoneId() 

Source Link

Document

getter for the #setServerTimeZoneId(String) serverTimeZoneId property.

Usage

From source file:ch.cyberduck.core.ftp.FTPParserFactory.java

public CompositeFileEntryParser createFileEntryParser(final FTPClientConfig config)
        throws ParserInitializationException {
    return this.createFileEntryParser(config.getServerSystemKey(),
            TimeZone.getTimeZone(config.getServerTimeZoneId()));
}