blob: 0f301a475c756a7cbb48501e407663b1129abd92 [file] [log] [blame]
package org.eclipse.ecf.internal.provider.bittorrent;
import org.eclipse.ecf.core.identity.IDCreateException;
import org.eclipse.ecf.filetransfer.service.IRetrieveFileTransfer;
import org.eclipse.ecf.filetransfer.service.IRetrieveFileTransferFactory;
public class BitTorrentRetrieveFileTransferFactory implements
IRetrieveFileTransferFactory {
public IRetrieveFileTransfer newInstance() {
try {
return new BitTorrentContainer();
} catch (IDCreateException e) {
return null;
}
}
}