remoteRepository element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<remoteRepository>
<downloadRemoteIndexOnStartup>...</downloadRemoteIndexOnStartup>
<extraHeadersEntries>
<key>...</key>
<value>...</value>
</extraHeadersEntries>
<extraHeadersEntries>
<!--...-->
</extraHeadersEntries>
<!--...more "extraHeadersEntries" elements...-->
<userName>...</userName>
<remoteDownloadNetworkProxyId>...</remoteDownloadNetworkProxyId>
<remoteIndexUrl>...</remoteIndexUrl>
<extraParametersEntries>
<key>...</key>
<value>...</value>
</extraParametersEntries>
<extraParametersEntries>
<!--...-->
</extraParametersEntries>
<!--...more "extraParametersEntries" elements...-->
<downloadRemoteIndex>...</downloadRemoteIndex>
<cronExpression>...</cronExpression>
<extraHeaders>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</extraHeaders>
<password>...</password>
<timeout>...</timeout>
<remoteDownloadTimeout>...</remoteDownloadTimeout>
<extraParameters>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</extraParameters>
<url>...</url>
<id>...</id>
<name>...</name>
<description>...</description>
<indexDirectory>...</indexDirectory>
<layout>...</layout>
</remoteRepository>
Example JSON
{
"downloadRemoteIndexOnStartup" : false,
"extraHeadersEntries" : [ {
"key" : "...",
"value" : "..."
}, ... ],
"userName" : "...",
"remoteDownloadNetworkProxyId" : "...",
"remoteIndexUrl" : "...",
"extraParametersEntries" : [ {
"key" : "...",
"value" : "..."
}, ... ],
"downloadRemoteIndex" : false,
"cronExpression" : "...",
"extraHeaders" : [ {
"..." : ...
}, {
} ],
"password" : "...",
"timeout" : ...,
"remoteDownloadTimeout" : ...,
"extraParameters" : [ {
"..." : ...
}, {
} ],
"url" : "...",
"id" : "...",
"name" : "...",
"description" : "...",
"indexDirectory" : "...",
"layout" : "..."
}