source: extensions/net.sf.basedb.xfiles/trunk/META-INF/extensions.xml @ 2518

Last change on this file since 2518 was 2518, checked in by Nicklas Nordborg, 9 years ago

References #611: Create package for supporting external files via SFTP

Should work now.

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about>
4    <name>External files support</name>
5    <description>
6      An extension package containing support for additional protocols to access external files.
7    </description>
8    <version>1.0-dev</version>
9    <min-base-version>3.3.0</min-base-version>
10    <copyright>BASE development team</copyright>
11    <email>basedb-users@lists.sourceforge.net</email>
12    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.xfiles</url>
13  </about>
14
15  <extension
16    id="net.sf.basedb.xfiles.sftp-connection-manager"
17    extends="net.sf.basedb.core.uri.connection-manager"
18    >
19    <index>20</index>
20    <about>
21      <name>SFTP connection manager</name>
22      <description>
23        Provides support for accessing files via SFTP protocol. Will only
24        work if a file is linked with a file server providing username,
25        password and SSH fingerprint information. The host specified in
26        the file item's URI will be replaced with the host information
27        specified in the file server item.
28      </description>
29    </about>
30    <action-factory>
31      <factory-class>net.sf.basedb.xfiles.sftp.SftpConnectionManagerActionFactory</factory-class>
32    </action-factory>
33  </extension>
34 
35</extensions>
Note: See TracBrowser for help on using the repository browser.