NIFI-332: Exposed proxy properties on PutFTP as well

This commit is contained in:
Mark Payne 2015-02-10 09:19:41 -05:00
parent 8a1a4b807e
commit afe446774d
1 changed files with 6 additions and 1 deletions

View File

@ -71,6 +71,11 @@ public class PutFTP extends PutFileTransfer<FTPTransfer> {
properties.add(FTPTransfer.LAST_MODIFIED_TIME);
properties.add(FTPTransfer.PERMISSIONS);
properties.add(FTPTransfer.USE_COMPRESSION);
properties.add(FTPTransfer.PROXY_TYPE);
properties.add(FTPTransfer.PROXY_HOST);
properties.add(FTPTransfer.PROXY_PORT);
properties.add(FTPTransfer.HTTP_PROXY_USERNAME);
properties.add(FTPTransfer.HTTP_PROXY_PASSWORD);
this.properties = Collections.unmodifiableList(properties);
}