KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > enterprisedt > net > ftp > FTPTransferType


1 /**
2  *
3  * Java FTP client library.
4  *
5  * Copyright (C) 2000-2003 Enterprise Distributed Technologies Ltd
6  *
7  * www.enterprisedt.com
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  * Bug fixes, suggestions and comments should be sent to bruce@enterprisedt.com
24  *
25  * Change Log:
26  *
27  * $Log: FTPTransferType.java,v $
28  * Revision 1.1.1.1 2005/06/23 15:22:58 smontoro
29  * hipergate backend
30  *
31  * Revision 1.1 2004/02/07 03:15:20 hipergate
32  * v2.0 pre-alpha
33  *
34  * Revision 1.4 2002/11/19 22:01:25 bruceb
35  * changes for 1.2
36  *
37  * Revision 1.3 2001/10/09 20:54:08 bruceb
38  * No change
39  *
40  * Revision 1.1 2001/10/05 14:42:04 bruceb
41  * moved from old project
42  *
43  *
44  */

45
46 package com.enterprisedt.net.ftp;
47
48 /**
49  * Enumerates the transfer types possible. We
50  * support only the two common types, ASCII and
51  * Image (often called binary).
52  *
53  * @author Bruce Blackshaw
54  * @version $Revision: 1.1.1.1 $
55  *
56  */

57  public class FTPTransferType {
58
59      /**
60       * Revision control id
61       */

62      private static String JavaDoc cvsId = "@(#)$Id: FTPTransferType.java,v 1.1.1.1 2005/06/23 15:22:58 smontoro Exp $";
63
64      /**
65       * Represents ASCII transfer type
66       */

67      public static FTPTransferType ASCII = new FTPTransferType();
68
69      /**
70       * Represents Image (or binary) transfer type
71       */

72      public static FTPTransferType BINARY = new FTPTransferType();
73
74      /**
75       * The char sent to the server to set ASCII
76       */

77      static String JavaDoc ASCII_CHAR = "A";
78
79      /**
80       * The char sent to the server to set BINARY
81       */

82      static String JavaDoc BINARY_CHAR = "I";
83
84      /**
85       * Private so no-one else can instantiate this class
86       */

87      private FTPTransferType() {
88      }
89  }
90
Popular Tags