This file is indexed.

/usr/share/doc/libcommons-net2-java/api/org/apache/commons/net/ftp/FTPClientConfig.html is in libcommons-net2-java-doc 2.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Wed May 30 10:19:42 UTC 2012 -->
<title>FTPClientConfig (libcommons-net2-java API)</title>
<meta name="date" content="2012-05-30">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="FTPClientConfig (libcommons-net2-java API)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/commons/net/ftp/FTPClient.html" title="class in org.apache.commons.net.ftp"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/commons/net/ftp/FTPCommand.html" title="class in org.apache.commons.net.ftp"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/net/ftp/FTPClientConfig.html" target="_top">Frames</a></li>
<li><a href="FTPClientConfig.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.commons.net.ftp</div>
<h2 title="Class FTPClientConfig" class="title">Class FTPClientConfig</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.apache.commons.net.ftp.FTPClientConfig</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">FTPClientConfig</span>
extends <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block"><p>
 This class implements an alternate means of configuring the
 <a href="../../../../../org/apache/commons/net/ftp/FTPClient.html" title="class in org.apache.commons.net.ftp"><code>FTPClient</code></a> object and
 also subordinate objects which it uses.  Any class implementing the 
 <a href="../../../../../org/apache/commons/net/ftp/Configurable.html" title="interface in org.apache.commons.net.ftp"><code>Configurable </code></a> 
 interface can be configured by this object. 
 </p><p>
 In particular this class was designed primarily to support configuration
 of FTP servers which express file timestamps in formats and languages 
 other than those for the US locale, which although it is the most common
 is not universal.  Unfortunately, nothing in the FTP spec allows this to 
 be determined in an automated way, so manual configuration such as this
 is necessary.
 </p><p>
 This functionality was designed to allow existing clients to work exactly
 as before without requiring use of this component.  This component should
 only need to be explicitly invoked by the user of this package for problem
 cases that previous implementations could not solve.
 </p>
 <h3>Examples of use of FTPClientConfig</h3>
 Use cases:
 You are trying to access a server that 
 <ul> 
 <li>lists files with timestamps that use month names in languages other 
 than English</li>
 <li>lists files with timestamps that use date formats other 
 than the American English "standard" <code>MM dd yyyy</code></li>
 <li>is in different timezone and you need accurate timestamps for 
 dependency checking as in Ant</li>
 </ul>
 <p>
 Unpaged (whole list) access on a UNIX server that uses French month names
 but uses the "standard" <code>MMM d yyyy</code> date formatting
 <pre>
    FTPClient f=FTPClient();
    FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
    conf.setServerLanguageCode("fr");
    f.configure(conf);
    f.connect(server);
    f.login(username, password);
    FTPFile[] files = listFiles(directory);
 </pre>
 </p>
 <p>
 Paged access on a UNIX server that uses Danish month names
 and "European" date formatting in Denmark's time zone, when you
 are in some other time zone.
 <pre>
    FTPClient f=FTPClient();
    FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
    conf.setServerLanguageCode("da");
    conf.setDefaultDateFormat("d MMM yyyy");
    conf.setRecentDateFormat("d MMM HH:mm");
    conf.setTimeZoneId("Europe/Copenhagen");
    f.configure(conf);
    f.connect(server);
    f.login(username, password);
    FTPListParseEngine engine =
       f.initiateListParsing("com.whatever.YourOwnParser", directory);

    while (engine.hasNext()) {
       FTPFile[] files = engine.getNext(25);  // "page size" you want
       //do whatever you want with these files, display them, etc.
       //expensive FTPFile objects not created until needed.
    }
 </pre>
 </p> 
 <p>
 Unpaged (whole list) access on a VMS server that uses month names
 in a language not <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getSupportedLanguageCodes()"><code>supported</code></a> by the system.
 but uses the "standard" <code>MMM d yyyy</code> date formatting
 <pre>
    FTPClient f=FTPClient();
    FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_VMS);
    conf.setShortMonthNames(
        "jan|feb|mar|apr|ma?|j?n|j?l|?g?|sep|okt|n?v|des");
    f.configure(conf);
    f.connect(server);
    f.login(username, password);
    FTPFile[] files = listFiles(directory);
 </pre>
 </p>
 <p>
 Unpaged (whole list) access on a Windows-NT server in a different time zone.
 (Note, since the NT Format uses numeric date formatting, language issues
 are irrelevant here).
 <pre>
    FTPClient f=FTPClient();
    FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_NT);
    conf.setTimeZoneId("America/Denver");
    f.configure(conf);
    f.connect(server);
    f.login(username, password);
    FTPFile[] files = listFiles(directory);
 </pre>
 </p>
 Unpaged (whole list) access on a Windows-NT server in a different time zone
 but which has been configured to use a unix-style listing format.
 <pre>
    FTPClient f=FTPClient();
    FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
    conf.setTimeZoneId("America/Denver");
    f.configure(conf);
    f.connect(server);
    f.login(username, password);
    FTPFile[] files = listFiles(directory);
 </pre>
 </p></div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/commons/net/ftp/Configurable.html" title="interface in org.apache.commons.net.ftp"><code>Configurable</code></a>, 
<a href="../../../../../org/apache/commons/net/ftp/FTPClient.html" title="class in org.apache.commons.net.ftp"><code>FTPClient</code></a>, 
<a href="../../../../../org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.html#configure(org.apache.commons.net.ftp.FTPClientConfig)"><code>FTPTimestampParserImpl.configure(FTPClientConfig)</code></a>, 
<a href="../../../../../org/apache/commons/net/ftp/parser/ConfigurableFTPFileEntryParserImpl.html" title="class in org.apache.commons.net.ftp.parser"><code>ConfigurableFTPFileEntryParserImpl</code></a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_AS400">SYST_AS400</a></strong></code>
<div class="block">Identifier by which an AS/400-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_L8">SYST_L8</a></strong></code>
<div class="block">Some servers return an "UNKNOWN Type: L8" message
 in response to the SYST command.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_MVS">SYST_MVS</a></strong></code>
<div class="block">Identifier by which an MVS-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_NETWARE">SYST_NETWARE</a></strong></code>
<div class="block">Identifier by which an Netware-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_NT">SYST_NT</a></strong></code>
<div class="block">Identifier by which a WindowsNT-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_OS2">SYST_OS2</a></strong></code>
<div class="block">Identifier by which an OS/2-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_OS400">SYST_OS400</a></strong></code>
<div class="block">Identifier by which an OS/400-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_UNIX">SYST_UNIX</a></strong></code>
<div class="block">Identifier by which a unix-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#SYST_VMS">SYST_VMS</a></strong></code>
<div class="block">Identifier by which a vms-based ftp server is known throughout
 the commons-net ftp system.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#FTPClientConfig()">FTPClientConfig</a></strong>()</code>
<div class="block">Convenience constructor mainly for use in testing.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#FTPClientConfig(java.lang.String)">FTPClientConfig</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;systemKey)</code>
<div class="block">The main constructor for an FTPClientConfig object</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#FTPClientConfig(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">FTPClientConfig</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;systemKey,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultDateFormatStr,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;recentDateFormatStr,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverLanguageCode,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortMonthNames,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverTimeZoneId)</code>
<div class="block">Constructor which allows setting of all member fields</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/text/DateFormatSymbols.html?is-external=true" title="class or interface in java.text">DateFormatSymbols</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getDateFormatSymbols(java.lang.String)">getDateFormatSymbols</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortmonths)</code>
<div class="block">Returns a DateFormatSymbols object configured with short month names
 as in the supplied string</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getDefaultDateFormatStr()">getDefaultDateFormatStr</a></strong>()</code>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)"><code>defaultDateFormatStr</code></a> 
 property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getRecentDateFormatStr()">getRecentDateFormatStr</a></strong>()</code>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a> property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getServerLanguageCode()">getServerLanguageCode</a></strong>()</code>
<div class="block">
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a> property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getServerSystemKey()">getServerSystemKey</a></strong>()</code>
<div class="block">Getter for the serverSystemKey property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getServerTimeZoneId()">getServerTimeZoneId</a></strong>()</code>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerTimeZoneId(java.lang.String)"><code>serverTimeZoneId</code></a> property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getShortMonthNames()">getShortMonthNames</a></strong>()</code>
<div class="block">
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)"><code>shortMonthNames</code></a> 
 property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getSupportedLanguageCodes()">getSupportedLanguageCodes</a></strong>()</code>
<div class="block">Returns a Collection of all the language codes currently supported
 by this class.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#isLenientFutureDates()">isLenientFutureDates</a></strong>()</code>
<div class="block">
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setLenientFutureDates(boolean)"><code>lenientFutureDates</code></a> property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="file:///usr/share/doc/default-jdk-doc/api/java/text/DateFormatSymbols.html?is-external=true" title="class or interface in java.text">DateFormatSymbols</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#lookupDateFormatSymbols(java.lang.String)">lookupDateFormatSymbols</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;languageCode)</code>
<div class="block">Looks up the supplied language code in the internally maintained table of 
 language codes.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)">setDefaultDateFormatStr</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultDateFormatStr)</code>
<div class="block">
 setter for the defaultDateFormatStr property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setLenientFutureDates(boolean)">setLenientFutureDates</a></strong>(boolean&nbsp;lenientFutureDates)</code>
<div class="block">
 setter for the lenientFutureDates property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)">setRecentDateFormatStr</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;recentDateFormatStr)</code>
<div class="block">
 setter for the recentDateFormatStr property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)">setServerLanguageCode</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverLanguageCode)</code>
<div class="block">
 setter for the serverLanguageCode property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerTimeZoneId(java.lang.String)">setServerTimeZoneId</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverTimeZoneId)</code>
<div class="block">
 setter for the serverTimeZoneId property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)">setShortMonthNames</a></strong>(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortMonthNames)</code>
<div class="block">
 setter for the shortMonthNames property.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="SYST_UNIX">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_UNIX</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_UNIX</pre>
<div class="block">Identifier by which a unix-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_UNIX">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_VMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_VMS</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_VMS</pre>
<div class="block">Identifier by which a vms-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_VMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_NT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_NT</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_NT</pre>
<div class="block">Identifier by which a WindowsNT-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_NT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_OS2">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_OS2</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_OS2</pre>
<div class="block">Identifier by which an OS/2-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_OS2">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_OS400">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_OS400</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_OS400</pre>
<div class="block">Identifier by which an OS/400-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_OS400">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_AS400">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_AS400</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_AS400</pre>
<div class="block">Identifier by which an AS/400-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_AS400">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_MVS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_MVS</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_MVS</pre>
<div class="block">Identifier by which an MVS-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_MVS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_L8">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYST_L8</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_L8</pre>
<div class="block">Some servers return an "UNKNOWN Type: L8" message
 in response to the SYST command. We set these to be a Unix-type system.
 This may happen if the ftpd in question was compiled without system
 information.

 NET-230 - Updated to be UPPERCASE so that the check done in
 createFileEntryParser will succeed.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_L8">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYST_NETWARE">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SYST_NETWARE</h4>
<pre>public static final&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SYST_NETWARE</pre>
<div class="block">Identifier by which an Netware-based ftp server is known throughout
 the commons-net ftp system.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.commons.net.ftp.FTPClientConfig.SYST_NETWARE">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="FTPClientConfig(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FTPClientConfig</h4>
<pre>public&nbsp;FTPClientConfig(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;systemKey)</pre>
<div class="block">The main constructor for an FTPClientConfig object</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>systemKey</code> - key representing system type of the  server being 
 connected to. See <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getServerSystemKey()"><code>serverSystemKey</code></a></dd></dl>
</li>
</ul>
<a name="FTPClientConfig()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FTPClientConfig</h4>
<pre>public&nbsp;FTPClientConfig()</pre>
<div class="block">Convenience constructor mainly for use in testing.
 Constructs a UNIX configuration.</div>
</li>
</ul>
<a name="FTPClientConfig(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>FTPClientConfig</h4>
<pre>public&nbsp;FTPClientConfig(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;systemKey,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultDateFormatStr,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;recentDateFormatStr,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverLanguageCode,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortMonthNames,
               <a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverTimeZoneId)</pre>
<div class="block">Constructor which allows setting of all member fields</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>systemKey</code> - key representing system type of the  server being 
 connected to. See 
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#getServerSystemKey()"><code>serverSystemKey</code></a></dd><dd><code>defaultDateFormatStr</code> - See 
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)"><code>defaultDateFormatStr</code></a></dd><dd><code>recentDateFormatStr</code> - See
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a></dd><dd><code>serverLanguageCode</code> - See
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a></dd><dd><code>shortMonthNames</code> - See
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)"><code>shortMonthNames</code></a></dd><dd><code>serverTimeZoneId</code> - See
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerTimeZoneId(java.lang.String)"><code>serverTimeZoneId</code></a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getServerSystemKey()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getServerSystemKey</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getServerSystemKey()</pre>
<div class="block">Getter for the serverSystemKey property.  This property
 specifies the general type of server to which the client connects.
 Should be either one of the <code>FTPClientConfig.SYST_*</code> codes
 or else the fully qualified class name of a parser implementing both
 the <code>FTPFileEntryParser</code> and <code>Configurable</code>
 interfaces.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the serverSystemKey property.</dd></dl>
</li>
</ul>
<a name="getDefaultDateFormatStr()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultDateFormatStr</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getDefaultDateFormatStr()</pre>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)"><code>defaultDateFormatStr</code></a> 
 property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the defaultDateFormatStr property.</dd></dl>
</li>
</ul>
<a name="getRecentDateFormatStr()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRecentDateFormatStr</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getRecentDateFormatStr()</pre>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a> property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the recentDateFormatStr property.</dd></dl>
</li>
</ul>
<a name="getServerTimeZoneId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getServerTimeZoneId</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getServerTimeZoneId()</pre>
<div class="block">getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerTimeZoneId(java.lang.String)"><code>serverTimeZoneId</code></a> property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the serverTimeZoneId property.</dd></dl>
</li>
</ul>
<a name="getShortMonthNames()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShortMonthNames</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getShortMonthNames()</pre>
<div class="block"><p>
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)"><code>shortMonthNames</code></a> 
 property.  
 </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the shortMonthNames.</dd></dl>
</li>
</ul>
<a name="getServerLanguageCode()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getServerLanguageCode</h4>
<pre>public&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getServerLanguageCode()</pre>
<div class="block"><p>
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a> property.
 </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the serverLanguageCode property.</dd></dl>
</li>
</ul>
<a name="isLenientFutureDates()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isLenientFutureDates</h4>
<pre>public&nbsp;boolean&nbsp;isLenientFutureDates()</pre>
<div class="block"><p>
 getter for the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setLenientFutureDates(boolean)"><code>lenientFutureDates</code></a> property.
 </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Returns the lenientFutureDates.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd></dl>
</li>
</ul>
<a name="setDefaultDateFormatStr(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDefaultDateFormatStr</h4>
<pre>public&nbsp;void&nbsp;setDefaultDateFormatStr(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;defaultDateFormatStr)</pre>
<div class="block"><p>
 setter for the defaultDateFormatStr property.  This property
 specifies the main date format that will be used by a parser configured
 by this configuration to parse file timestamps.  If this is not
 specified, such a parser will use as a default value, the most commonly
 used format which will be in as used in <code>en_US</code> locales.
 </p><p>
 This should be in the format described for 
 <code>java.text.SimpleDateFormat</code>. 
 property.
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>defaultDateFormatStr</code> - The defaultDateFormatStr to set.</dd></dl>
</li>
</ul>
<a name="setRecentDateFormatStr(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRecentDateFormatStr</h4>
<pre>public&nbsp;void&nbsp;setRecentDateFormatStr(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;recentDateFormatStr)</pre>
<div class="block"><p>
 setter for the recentDateFormatStr property.  This property
 specifies a secondary date format that will be used by a parser 
 configured by this configuration to parse file timestamps, typically 
 those less than a year old.  If this is  not specified, such a parser 
 will not attempt to parse using an alternate format.
 </p>
 This is used primarily in unix-based systems.
 </p>
 This should be in the format described for 
 <code>java.text.SimpleDateFormat</code>.
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>recentDateFormatStr</code> - The recentDateFormatStr to set.</dd></dl>
</li>
</ul>
<a name="setLenientFutureDates(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLenientFutureDates</h4>
<pre>public&nbsp;void&nbsp;setLenientFutureDates(boolean&nbsp;lenientFutureDates)</pre>
<div class="block"><p>
 setter for the lenientFutureDates property.  This boolean property
 (default: false) only has meaning when a 
 <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a> property
 has been set.  In that case, if this property is set true, then the
 parser, when it encounters a listing parseable with the recent date 
 format, will only consider a date to belong to the previous year if
 it is more than one day in the future.  This will allow all 
 out-of-synch situations (whether based on "slop" - i.e. servers simply 
 out of synch with one another or because of time zone differences - 
 but in the latter case it is highly recommended to use the 
 <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerTimeZoneId(java.lang.String)"><code>serverTimeZoneId</code></a> property
 instead) to resolve correctly.
 </p><p>
 This is used primarily in unix-based systems.
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>lenientFutureDates</code> - set true to compensate for out-of-synch 
 conditions.</dd></dl>
</li>
</ul>
<a name="setServerTimeZoneId(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setServerTimeZoneId</h4>
<pre>public&nbsp;void&nbsp;setServerTimeZoneId(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverTimeZoneId)</pre>
<div class="block"><p>
 setter for the serverTimeZoneId property.  This property
 allows a time zone to be specified corresponding to that known to be 
 used by an FTP server in file listings.  This might be particularly 
 useful to clients such as Ant that try to use these timestamps for 
 dependency checking.
 </p><p>
 This should be one of the identifiers used by 
 <code>java.util.TimeZone</code> to refer to time zones, for example, 
 <code>America/Chicago</code> or <code>Asia/Rangoon</code>.
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverTimeZoneId</code> - The serverTimeZoneId to set.</dd></dl>
</li>
</ul>
<a name="setShortMonthNames(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShortMonthNames</h4>
<pre>public&nbsp;void&nbsp;setShortMonthNames(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortMonthNames)</pre>
<div class="block"><p>
 setter for the shortMonthNames property.  
 This property allows the user to specify a set of month names
 used by the server that is different from those that may be 
 specified using the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a>
 property.
 </p><p>
 This should be a string containing twelve strings each composed of
 three characters, delimited by pipe (|) characters.  Currently, 
 only 8-bit ASCII characters are known to be supported.  For example,
 a set of month names used by a hypothetical Icelandic FTP server might 
 conceivably be specified as 
 <code>"jan|feb|mar|apr|ma&#xED;|j&#xFA;n|j&#xFA;l|&#xE1;g&#xFA;|sep|okt|n&#xF3;v|des"</code>.  
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>shortMonthNames</code> - The value to set to the shortMonthNames property.</dd></dl>
</li>
</ul>
<a name="setServerLanguageCode(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setServerLanguageCode</h4>
<pre>public&nbsp;void&nbsp;setServerLanguageCode(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;serverLanguageCode)</pre>
<div class="block"><p>
 setter for the serverLanguageCode property.  This property allows
 user to specify a 
 <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt">
 two-letter ISO-639 language code</a> that will be used to 
 configure the set of month names used by the file timestamp parser.
 If neither this nor the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)"><code>shortMonthNames</code></a> 
 is specified, parsing will assume English month names, which may or 
 may not be significant, depending on whether the date format(s) 
 specified via <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)"><code>defaultDateFormatStr</code></a> 
 and/or <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a> are using 
 numeric or alphabetic month names.
 </p>
 <p>If the code supplied is not supported here, <code>en_US</code>
 month names will be used.  We are supporting here those language 
 codes which, when a <code> java.util.Locale</code> is constucted
 using it, and a <code>java.text.SimpleDateFormat</code> is 
 constructed using that Locale, the array returned by the 
 SimpleDateFormat's <code>getShortMonths()</code> method consists
 solely of three 8-bit ASCII character strings.  Additionally, 
 languages which do not meet this requirement are included if a 
 common alternative set of short month names is known to be used.
 This means that users who can tell us of additional such encodings
 may get them added to the list of supported languages by contacting
 the Apache Commons Net team.
 </p>
 <p><strong>
 Please note that this attribute will NOT be used to determine a 
 locale-based date format for the language.  </strong>  
 Experience has shown that many if not most FTP servers outside the
 United States employ the standard <code>en_US</code> date format 
 orderings of <code>MMM d yyyy</code> and <code>MMM d HH:mm</code> 
 and attempting to deduce this automatically here would cause more
 problems than it would solve.  The date format must be changed 
 via the <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setDefaultDateFormatStr(java.lang.String)"><code>defaultDateFormatStr</code></a> and/or 
 <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setRecentDateFormatStr(java.lang.String)"><code>recentDateFormatStr</code></a> parameters.
 </p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverLanguageCode</code> - The value to set to the serverLanguageCode property.</dd></dl>
</li>
</ul>
<a name="lookupDateFormatSymbols(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lookupDateFormatSymbols</h4>
<pre>public static&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/text/DateFormatSymbols.html?is-external=true" title="class or interface in java.text">DateFormatSymbols</a>&nbsp;lookupDateFormatSymbols(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;languageCode)</pre>
<div class="block">Looks up the supplied language code in the internally maintained table of 
 language codes.  Returns a DateFormatSymbols object configured with 
 short month names corresponding to the code.  If there is no corresponding
 entry in the table, the object returned will be that for 
 <code>Locale.US</code></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>languageCode</code> - See <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a></dd>
<dt><span class="strong">Returns:</span></dt><dd>a DateFormatSymbols object configured with short month names 
 corresponding to the supplied code, or with month names for  
 <code>Locale.US</code> if there is no corresponding entry in the internal
 table.</dd></dl>
</li>
</ul>
<a name="getDateFormatSymbols(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDateFormatSymbols</h4>
<pre>public static&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/text/DateFormatSymbols.html?is-external=true" title="class or interface in java.text">DateFormatSymbols</a>&nbsp;getDateFormatSymbols(<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;shortmonths)</pre>
<div class="block">Returns a DateFormatSymbols object configured with short month names
 as in the supplied string</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>shortmonths</code> - This  should be as described in 
  <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setShortMonthNames(java.lang.String)"><code>shortMonthNames</code></a></dd>
<dt><span class="strong">Returns:</span></dt><dd>a DateFormatSymbols object configured with short month names
 as in the supplied string</dd></dl>
</li>
</ul>
<a name="getSupportedLanguageCodes()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getSupportedLanguageCodes</h4>
<pre>public static&nbsp;<a href="file:///usr/share/doc/default-jdk-doc/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="file:///usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getSupportedLanguageCodes()</pre>
<div class="block">Returns a Collection of all the language codes currently supported
 by this class. See <a href="../../../../../org/apache/commons/net/ftp/FTPClientConfig.html#setServerLanguageCode(java.lang.String)"><code>serverLanguageCode</code></a>  
 for a functional descrption of language codes within this system.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>a Collection of all the language codes currently supported
 by this class</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/commons/net/ftp/FTPClient.html" title="class in org.apache.commons.net.ftp"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/commons/net/ftp/FTPCommand.html" title="class in org.apache.commons.net.ftp"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/net/ftp/FTPClientConfig.html" target="_top">Frames</a></li>
<li><a href="FTPClientConfig.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>