extensions/net.sf.basedb.xfiles/trunk/META-INF/extensions.xml

Code
Comments
Other
Rev Date Author Line
2517 23 Jun 14 nicklas 1 <?xml version="1.0" encoding="UTF-8" ?>
2517 23 Jun 14 nicklas 2 <extensions xmlns="http://base.thep.lu.se/extensions.xsd">
2517 23 Jun 14 nicklas 3   <about>
2517 23 Jun 14 nicklas 4     <name>External files support</name>
2517 23 Jun 14 nicklas 5     <description>
2517 23 Jun 14 nicklas 6       An extension package containing support for additional protocols to access external files.
2517 23 Jun 14 nicklas 7     </description>
7311 28 Aug 23 nicklas 8     <version>1.8-dev</version>
6314 11 Jun 21 nicklas 9     <min-base-version>3.18.0</min-base-version>
2517 23 Jun 14 nicklas 10     <copyright>BASE development team</copyright>
2517 23 Jun 14 nicklas 11     <email>basedb-users@lists.sourceforge.net</email>
6307 11 Jun 21 nicklas 12     <url>https://baseplugins.thep.lu.se/wiki/net.sf.basedb.xfiles</url>
2517 23 Jun 14 nicklas 13   </about>
2518 24 Jun 14 nicklas 14
2518 24 Jun 14 nicklas 15   <extension
2518 24 Jun 14 nicklas 16     id="net.sf.basedb.xfiles.sftp-connection-manager"
2518 24 Jun 14 nicklas 17     extends="net.sf.basedb.core.uri.connection-manager"
2518 24 Jun 14 nicklas 18     >
2518 24 Jun 14 nicklas 19     <index>20</index>
2518 24 Jun 14 nicklas 20     <about>
2518 24 Jun 14 nicklas 21       <name>SFTP connection manager</name>
2518 24 Jun 14 nicklas 22       <description>
2518 24 Jun 14 nicklas 23         Provides support for accessing files via SFTP protocol. Will only
2518 24 Jun 14 nicklas 24         work if a file is linked with a file server providing username,
2518 24 Jun 14 nicklas 25         password and SSH fingerprint information. The host specified in
2518 24 Jun 14 nicklas 26         the file item's URI will be replaced with the host information
2518 24 Jun 14 nicklas 27         specified in the file server item.
2518 24 Jun 14 nicklas 28       </description>
2518 24 Jun 14 nicklas 29     </about>
2518 24 Jun 14 nicklas 30     <action-factory>
2518 24 Jun 14 nicklas 31       <factory-class>net.sf.basedb.xfiles.sftp.SftpConnectionManagerActionFactory</factory-class>
2518 24 Jun 14 nicklas 32     </action-factory>
2518 24 Jun 14 nicklas 33   </extension>
2517 23 Jun 14 nicklas 34   
2521 25 Jun 14 nicklas 35   <extension
2521 25 Jun 14 nicklas 36     id="net.sf.basedb.xfiles.ftp-connection-manager"
2521 25 Jun 14 nicklas 37     extends="net.sf.basedb.core.uri.connection-manager"
2521 25 Jun 14 nicklas 38     >
2521 25 Jun 14 nicklas 39     <index>21</index>
2521 25 Jun 14 nicklas 40     <about>
2521 25 Jun 14 nicklas 41       <name>FTP connection manager</name>
2521 25 Jun 14 nicklas 42       <description>
2521 25 Jun 14 nicklas 43         Provides support for accessing files via FTP/FTPS protocol. 
2521 25 Jun 14 nicklas 44         Uses anonymous ftp if not linked with a file server. 
2521 25 Jun 14 nicklas 45         If login or FTPS is requried a file server item must be
2521 25 Jun 14 nicklas 46         created to hold the required information. In this case,
2521 25 Jun 14 nicklas 47         the file item's URI will be replaced with the host information 
2521 25 Jun 14 nicklas 48         specified in the file server item.
2521 25 Jun 14 nicklas 49       </description>
2521 25 Jun 14 nicklas 50     </about>
2521 25 Jun 14 nicklas 51     <action-factory>
2521 25 Jun 14 nicklas 52       <factory-class>net.sf.basedb.xfiles.ftp.FtpConnectionManagerActionFactory</factory-class>
2521 25 Jun 14 nicklas 53     </action-factory>
2521 25 Jun 14 nicklas 54   </extension>
2521 25 Jun 14 nicklas 55   
2517 23 Jun 14 nicklas 56 </extensions>