@@ -147,6 +147,8 @@ public class SendSafely {
147
147
148
148
protected double version = 0.3 ;
149
149
150
+ private boolean ec2Proxy = false ;
151
+
150
152
/**
151
153
* @description Constructor to create a new SendSafely object.
152
154
* @param host The hostname you use to access SendSafely. Should be https://companyname.sendsafely.com or https://www.sendsafely.com
@@ -216,6 +218,10 @@ public SendSafely(String host) {
216
218
this (host , (ConnectionManager )null , (CredentialsManager )null );
217
219
}
218
220
221
+ public void setEc2Proxy (boolean isProxy ) {
222
+ this .ec2Proxy = isProxy ;
223
+ }
224
+
219
225
/**
220
226
* @description Add Contact Group as a recipient on a package.
221
227
* @param packageId The unique package id of the package for the add the Contact Group operation.
@@ -435,7 +441,7 @@ public void deletePackage(String packageId) throws DeletePackageException
435
441
*/
436
442
public java .io .File downloadFile (String packageId , String fileId , String keyCode ) throws DownloadFileException , PasswordRequiredException
437
443
{
438
- return downloadFile (packageId , fileId , keyCode , null , ( String ) null );
444
+ return downloadFile (packageId , fileId , keyCode , new DefaultProgress () );
439
445
}
440
446
441
447
/**
@@ -452,7 +458,7 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
452
458
public java .io .File downloadFile (String packageId , String fileId , String keyCode , ProgressInterface progress ) throws DownloadFileException , PasswordRequiredException
453
459
{
454
460
DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler (uploadManager );
455
- return handler .makeRequest (packageId , null , fileId , keyCode , progress , null );
461
+ return handler .makeRequestS3 (packageId , null , fileId , keyCode , progress , null , ec2Proxy );
456
462
}
457
463
458
464
/**
@@ -485,7 +491,6 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
485
491
return handler .makeRequest (packageId , null , fileId , keyCode , progress , password );
486
492
}
487
493
488
-
489
494
/**
490
495
* @description Downloads a file from the server and decrypts it.
491
496
* @param packageId The unique package id of the package for the file download operation.
@@ -499,7 +504,8 @@ public java.io.File downloadFile(String packageId, String fileId, String keyCode
499
504
*/
500
505
public java .io .File downloadFile (String packageId , String fileId , String keyCode , String password ) throws DownloadFileException , PasswordRequiredException
501
506
{
502
- return downloadFile (packageId , fileId , keyCode , null , password );
507
+ DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler (uploadManager );
508
+ return handler .makeRequest (packageId , null , fileId , keyCode , null , password );
503
509
}
504
510
505
511
/**
@@ -531,7 +537,7 @@ public java.io.File downloadFileFromDirectory(String packageId, String directory
531
537
*/
532
538
public java .io .File downloadFileFromDirectory (String packageId , String directoryId , String fileId , String keyCode , ProgressInterface progress ) throws DownloadFileException , PasswordRequiredException {
533
539
DownloadAndDecryptFileHandler handler = new DownloadAndDecryptFileHandler (uploadManager );
534
- return handler .makeRequest (packageId , directoryId , fileId , keyCode , progress );
540
+ return handler .makeRequestS3 (packageId , directoryId , fileId , keyCode , progress , ( String ) null , ec2Proxy );
535
541
}
536
542
537
543
/**
0 commit comments