| java.lang.Object org.eclipse.pde.internal.build.fetch.GETFetchFactory
GETFetchFactory | public class GETFetchFactory implements IFetchFactory(Code) | | This class implements a fetch factory which calls the Ant Get task on a given URL. The
format of the map file entry is as follows:
type@id=GET,url,[args]
where:
type = feature | plugin
id = plug-in or feature identifier (symbolic name)
GET = mandatory constant (to call this fetch factory)
url = url to retrieve the data from (suitable to be used in the Ant Get task)
args = optional comma-separated list of key/value pairs, specify unpack=true to indicate the element should be unzipped
e.g.
plugin@com.example.foobar=GET,http://downloads.example.com/com.example.foobar_1.0.jar
plugin@com.example.foobar=GET,http://downloads.example.com/com.example.foobar_1.0.jar,unpack=true
plugin@com.example.foobar=GET,http://downloads.example.com/com.example.foobar_1.0.zip,unpack=true, username=foo, password=bar
since: 3.2.100 |
generateRetrieveElementCall | public void generateRetrieveElementCall(Map entryInfos, IPath destination, IAntScript script)(Code) | | |
generateRetrieveFilesCall | public void generateRetrieveFilesCall(Map entryInfos, IPath destination, String[] files, IAntScript script)(Code) | | |
parseMapFileEntry | public void parseMapFileEntry(String rawEntry, Properties overrideTags, Map entryInfos) throws CoreException(Code) | | |
|
|