01: /**
02: *
03: * Java FTP client library.
04: *
05: * Copyright (C) 2000-2003 Enterprise Distributed Technologies Ltd
06: *
07: * www.enterprisedt.com
08: *
09: * 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: FTPConnectMode.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.2 2002/11/19 22:01:25 bruceb
35: * changes for 1.2
36: *
37: * Revision 1.1 2001/10/09 20:53:46 bruceb
38: * Active mode changes
39: *
40: * Revision 1.1 2001/10/05 14:42:04 bruceb
41: * moved from old project
42: *
43: *
44: */package com.enterprisedt.net.ftp;
45:
46: /**
47: * Enumerates the connect modes that are possible,
48: * active & PASV
49: *
50: * @author Bruce Blackshaw
51: * @version $Revision: 1.1.1.1 $
52: *
53: */
54: public class FTPConnectMode {
55:
56: /**
57: * Revision control id
58: */
59: private static String cvsId = "@(#)$Id: FTPConnectMode.java,v 1.1.1.1 2005/06/23 15:22:58 smontoro Exp $";
60:
61: /**
62: * Represents active connect mode
63: */
64: public static FTPConnectMode ACTIVE = new FTPConnectMode();
65:
66: /**
67: * Represents PASV connect mode
68: */
69: public static FTPConnectMode PASV = new FTPConnectMode();
70:
71: /**
72: * Private so no-one else can instantiate this class
73: */
74: private FTPConnectMode() {
75: }
76: }
|