Changeset 2521
- Timestamp:
- Jun 25, 2014, 9:35:01 AM (9 years ago)
- Location:
- extensions/net.sf.basedb.xfiles/trunk
- Files:
-
- 7 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.xfiles/trunk/.classpath
r2518 r2521 5 5 <classpathentry kind="lib" path="lib/base-core-3.3.0.jar"/> 6 6 <classpathentry kind="lib" path="META-INF/lib/sshj-0.9.0.jar"/> 7 <classpathentry kind="lib" path="META-INF/lib/ftp4j-1.7.2.jar"/> 7 8 <classpathentry kind="output" path="bin"/> 8 9 </classpath> -
extensions/net.sf.basedb.xfiles/trunk/META-INF/MANIFEST.MF
r2518 r2521 1 1 Manifest-Version: 1.0 2 Class-Path: lib/sshj-0.9.0.jar 2 Class-Path: lib/sshj-0.9.0.jar lib/ftp4j-1.7.2.jar -
extensions/net.sf.basedb.xfiles/trunk/META-INF/extensions.xml
r2518 r2521 33 33 </extension> 34 34 35 <extension 36 id="net.sf.basedb.xfiles.ftp-connection-manager" 37 extends="net.sf.basedb.core.uri.connection-manager" 38 > 39 <index>21</index> 40 <about> 41 <name>FTP connection manager</name> 42 <description> 43 Provides support for accessing files via FTP/FTPS protocol. 44 Uses anonymous ftp if not linked with a file server. 45 If login or FTPS is requried a file server item must be 46 created to hold the required information. In this case, 47 the file item's URI will be replaced with the host information 48 specified in the file server item. 49 </description> 50 </about> 51 <action-factory> 52 <factory-class>net.sf.basedb.xfiles.ftp.FtpConnectionManagerActionFactory</factory-class> 53 </action-factory> 54 </extension> 55 35 56 </extensions> -
extensions/net.sf.basedb.xfiles/trunk/src/net/sf/basedb/xfiles/XFiles.java
r2520 r2521 41 41 42 42 /** 43 Default port when using FTP is 21. 44 */ 45 public static final int DEFAULT_FTP_PORT = 21; 46 47 /** 48 Default port when using FTPS is 990. 49 */ 50 public static final int DEFAULT_FTPS_PORT = 990; 51 52 /** 43 53 Default size of internal buffer when downloading files is 1MB. 44 54 */
Note: See TracChangeset
for help on using the changeset viewer.