Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-12-12 22:12:10 +0000
committerslewis2007-12-12 22:12:10 +0000
commit7571041d052614867309c6fc97d318bfbb0c52ca (patch)
tree8ceea5918bc191bf435ab97c69cac8858eba8e27 /providers
parentd4623fb3466c0893d519ab2a8d2b05a1c6650574 (diff)
downloadorg.eclipse.ecf-7571041d052614867309c6fc97d318bfbb0c52ca.tar.gz
org.eclipse.ecf-7571041d052614867309c6fc97d318bfbb0c52ca.tar.xz
org.eclipse.ecf-7571041d052614867309c6fc97d318bfbb0c52ca.zip
Additions to file transfer API...specifically addition of two extension points retrieveFileTransferProtocolFactory, and sendFileTransferProtocolFactory for file retrieve, and send, respectively. Also added documentation to online docs.
Diffstat (limited to 'providers')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent/META-INF/MANIFEST.MF2
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.bittorrent/plugin.xml6
2 files changed, 4 insertions, 4 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent/META-INF/MANIFEST.MF b/providers/bundles/org.eclipse.ecf.provider.bittorrent/META-INF/MANIFEST.MF
index d0645f4f5..e9b0010f7 100644
--- a/providers/bundles/org.eclipse.ecf.provider.bittorrent/META-INF/MANIFEST.MF
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.ecf.provider.bittorrent;singleton:=true
-Bundle-Version: 0.2.0.qualifier
+Bundle-Version: 0.3.0.qualifier
Bundle-Activator: org.eclipse.ecf.internal.provider.bittorrent.BitTorrentProviderPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/providers/bundles/org.eclipse.ecf.provider.bittorrent/plugin.xml b/providers/bundles/org.eclipse.ecf.provider.bittorrent/plugin.xml
index fa19965d1..ee8dd84ca 100644
--- a/providers/bundles/org.eclipse.ecf.provider.bittorrent/plugin.xml
+++ b/providers/bundles/org.eclipse.ecf.provider.bittorrent/plugin.xml
@@ -15,10 +15,10 @@
name="ecf.bittorrent"/>
</extension>
<extension
- point="org.eclipse.ecf.provider.filetransfer.fileTransferProtocolFactory">
- <fileTransferProtocolFactory
+ point="org.eclipse.ecf.provider.filetransfer.retrieveFileTransferProtocolFactory">
+ <retrieveFileTransferProtocolFactory
class="org.eclipse.ecf.internal.provider.bittorrent.BitTorrentRetrieveFileTransferFactory"
protocol="torrent">
- </fileTransferProtocolFactory>
+ </retrieveFileTransferProtocolFactory>
</extension>
</plugin>

Back to the top