Source Code Cross Referenced for AdvancedSettings.java in  » Net » edtftpj » com » enterprisedt » net » ftp » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » edtftpj » com.enterprisedt.net.ftp 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * 
003:         *  Copyright (C) 2007 Enterprise Distributed Technologies Ltd
004:         *
005:         *  www.enterprisedt.com
006:         *
007:         *  This library is free software; you can redistribute it and/or
008:         *  modify it under the terms of the GNU Lesser General Public
009:         *  License as published by the Free Software Foundation; either
010:         *  version 2.1 of the License, or (at your option) any later version.
011:         *
012:         *  This library is distributed in the hope that it will be useful,
013:         *  but WITHOUT ANY WARRANTY; without even the implied warranty of
014:         *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
015:         *  Lesser General Public License for more details.
016:         *
017:         *  You should have received a copy of the GNU Lesser General Public
018:         *  License along with this library; if not, write to the Free Software
019:         *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
020:         *
021:         *  Bug fixes, suggestions and comments should be should posted on 
022:         *  http://www.enterprisedt.com/forums/index.php
023:         *
024:         *  Change Log:
025:         *
026:         *    $Log: AdvancedSettings.java,v $
027:         *    Revision 1.2  2007-12-20 00:40:16  bruceb
028:         *    autologin
029:         *
030:         *    Revision 1.1  2007-12-18 07:52:06  bruceb
031:         *    2.0 changes
032:         *
033:         *
034:         */package com.enterprisedt.net.ftp;
035:
036:        /**
037:         *  Holds advanced configuration options not likely to be used for
038:         *  basic FTP operations. These options must be set prior to establishing
039:         *  connections, otherwise they have no effect until a new connection is made.
040:         *
041:         *  @author      Bruce Blackshaw
042:         *  @version     $Revision: 1.2 $
043:         */
044:        public class AdvancedSettings {
045:
046:            protected ConnectionContext context;
047:
048:            /**
049:             * Determine if auto login is switched on
050:             * 
051:             * @return true if auto login
052:             */
053:            public boolean isAutoLogin() {
054:                return context.isAutoLogin();
055:            }
056:
057:            /**
058:             * Set the autoLogin flag
059:             * 
060:             * @param autoLogin   true if logging in automatically
061:             */
062:            public void setAutoLogin(boolean autoLogin) {
063:                context.setAutoLogin(autoLogin);
064:            }
065:
066:            /**
067:             * Constructor
068:             * 
069:             * @param context  context that settings are kept in
070:             */
071:            protected AdvancedSettings(ConnectionContext context) {
072:                this .context = context;
073:            }
074:
075:            /**
076:             * Listen on all interfaces for active mode transfers (the default).
077:             * 
078:             * @param listenOnAll   true if listen on all interfaces, false to listen on the control interface
079:             */
080:            public void setListenOnAllInterfaces(boolean listenOnAll) {
081:                context.setListenOnAllInterfaces(listenOnAll);
082:            }
083:
084:            /**
085:             * Are we listening on all interfaces in active mode, which is the default?
086:             * 
087:             * @return true if listening on all interfaces, false if listening just on the control interface
088:             */
089:            public boolean getListenOnAllInterfaces() {
090:                return context.getListenOnAllInterfaces();
091:            }
092:
093:            /**
094:             * If true, delete partially written files when exceptions are thrown
095:             * during a download
096:             * 
097:             * @return true if delete local file on error
098:             */
099:            public boolean isDeleteOnFailure() {
100:                return context.isDeleteOnFailure();
101:            }
102:
103:            /**
104:             * Switch on or off the automatic deletion of partially written files 
105:             * that are left when an exception is thrown during a download
106:             * 
107:             * @param deleteOnFailure  true if delete when a failure occurs
108:             */
109:            public void setDeleteOnFailure(boolean deleteOnFailure) {
110:                context.setDeleteOnFailure(deleteOnFailure);
111:            }
112:
113:            /**
114:             * Get the encoding used for the control channel
115:             * 
116:             * @return Returns the current controlEncoding.
117:             */
118:            public String getControlEncoding() {
119:                return context.getControlEncoding();
120:            }
121:
122:            /**
123:             * Set the control channel encoding. 
124:             * 
125:             * @param controlEncoding The controlEncoding to set, which is the name of a Charset
126:             */
127:            public void setControlEncoding(String controlEncoding) {
128:                context.setControlEncoding(controlEncoding);
129:            }
130:
131:            /**
132:             * Set the size of the data buffers used in reading and writing to the server
133:             * 
134:             * @param size  new size of buffer in bytes
135:             */
136:            public void setTransferBufferSize(int size) {
137:                context.setTransferBufferSize(size);
138:            }
139:
140:            /**
141:             * Get the size of the data buffers used in reading and writing to the server
142:             * 
143:             * @return  transfer buffer size
144:             */
145:            public int getTransferBufferSize() {
146:                return context.getTransferBufferSize();
147:            }
148:
149:            /**
150:             * Get the interval used for progress notification of transfers.
151:             * 
152:             * @return number of bytes between each notification.
153:             */
154:            public int getTransferNotifyInterval() {
155:                return context.getTransferNotifyInterval();
156:            }
157:
158:            /**
159:             * Set the interval used for progress notification of transfers.
160:             * 
161:             * @param notifyInterval  number of bytes between each notification
162:             */
163:            public void setTransferNotifyInterval(int notifyInterval) {
164:                context.setTransferNotifyInterval(notifyInterval);
165:            }
166:
167:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.