1 | void setServerTimeZoneConfig(String serverTimeZoneId) {↵ | | 1 | void set↵
|
2 | if (serverTimeZoneId != null && !serverTimeZoneId↵ | | 2 | DefaultDateFormatConfig(String defaultDateFormat) {↵
|
3 | .equals("")) {↵ | | 3 | if (defaultDateFormat != null && !defaultDateFormat.equals("")) {↵
|
4 | this.serverTimeZoneConfig = serverTimeZoneId;↵ | | 4 | this.defaultDateFormatConfig = defaultDateFormat;↵
|
5 | configurationHasBeenSet();↵ | | 5 | configurationHasBeenSet();↵
|
6 | }↵ | | 6 | }↵
|
7 | }↵ | | 7 | }↵
|
|
8 | /**↵ | | 8 | /**↵
|
9 | * Sets the shortMonthNamesConfig attribute↵ | | 9 | * Sets the recentDateFormatConfig attribute↵
|
10 | *↵ | | 10 | .↵
|
11 | * @param shortMonthNames configuration to be set, unless it is↵ | | 11 | * @param recentDateFormat configuration to be set, unless it is↵
|
12 | * null or empty string, in which case ignored.↵ | | 12 | * null or empty string, in which case ignored.↵
|
13 | * @see org.apache.commons.net.ftp.FTPClientConfig↵ | | 13 | * @see org.apache.commons.net.ftp.FTPClientConfig↵
|
14 | */↵ | | 14 | */↵
|
15 | public void setShortMonthNamesConfig(String shortMonthNames) {↵ | | 15 | public void set↵
|
16 | if (shortMonthNames != null && !shortMonthNames↵ | | 16 | RecentDateFormatConfig(String recentDateFormat) {↵
|
17 | .equals("")) {↵ | | 17 | if (recentDateFormat != null && !recentDateFormat.equals("")) {↵
|
18 | this.shortMonthNamesConfig = shortMonthNames;↵ | | 18 | this.recentDateFormatConfig = recentDateFormat;↵
|
19 | configurationHasBeenSet();↵ | | 19 | configurationHasBeenSet();↵
|
20 | }↵ | | 20 | }↵
|
21 | | | 21 |
|