| Package | Description |
|---|---|
| org.jets3t.apps.cockpit |
Provides Cockpit, a graphical Java application for viewing and managing the contents of an Amazon S3 account.
|
| org.jets3t.apps.synchronize |
Provides the Synchronize application, a console application to synchronize the
local file system with Amazon S3.
|
| org.jets3t.service.multi | |
| org.jets3t.service.multithread |
A multi-threading utility that manages multiple S3 interactions at once by wrapping an S3Service
implementation and running this service with multiple threads.
|
| org.jets3t.service.utils |
General purpose utilities used throughout the JetS3t toolkit and applications.
|
| Modifier and Type | Field and Description |
|---|---|
private EncryptionUtil |
Cockpit.encryptionUtil |
| Modifier and Type | Field and Description |
|---|---|
private EncryptionUtil |
Synchronize.LazyPreparedUploadObject.encryptionUtil |
| Constructor and Description |
|---|
LazyPreparedUploadObject(java.lang.String targetKey,
java.io.File file,
byte[] md5HashOfFile,
java.lang.String aclString,
EncryptionUtil encryptionUtil) |
| Modifier and Type | Field and Description |
|---|---|
protected EncryptionUtil |
DownloadPackage.encryptionUtil |
| Constructor and Description |
|---|
DownloadPackage(StorageObject object,
java.io.File outputFile,
boolean isUnzipping,
EncryptionUtil encryptionUtil) |
DownloadPackage(StorageObject object,
java.io.OutputStream outputStream,
boolean isUnzipping,
EncryptionUtil encryptionUtil) |
| Constructor and Description |
|---|
DownloadPackage(S3Object object,
java.io.File outputFile,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
DownloadPackage(S3Object object,
java.io.OutputStream outputStream,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
DownloadPackage(java.lang.String signedUrl,
java.io.File outputFile,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
DownloadPackage(java.lang.String signedUrl,
java.io.OutputStream outputStream,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static S3Object |
ObjectUtils.createObjectForUpload(java.lang.String objectKey,
java.io.File dataFile,
byte[] md5HashOfDataFile,
EncryptionUtil encryptionUtil,
boolean gzipFile,
BytesProgressWatcher progressWatcher)
Prepares a file for upload to a named object in S3, potentially transforming it if
zipping or encryption is requested.
|
static S3Object |
ObjectUtils.createObjectForUpload(java.lang.String objectKey,
java.io.File dataFile,
EncryptionUtil encryptionUtil,
boolean gzipFile)
Prepares a file for upload to a named object in S3, potentially transforming it if
zipping or encryption is requested.
|
static S3Object |
ObjectUtils.createObjectForUpload(java.lang.String objectKey,
java.io.File dataFile,
EncryptionUtil encryptionUtil,
boolean gzipFile,
BytesProgressWatcher progressWatcher)
Prepares a file for upload to a named object in S3, potentially transforming it if
zipping or encryption is requested.
|
private static java.io.File |
ObjectUtils.transformUploadFile(java.io.File dataFile,
S3Object s3Object,
EncryptionUtil encryptionUtil,
boolean gzipFile,
BytesProgressWatcher progressWatcher)
Prepares a file prior to upload by encrypting and/or gzipping it according to the
options specified by the user, and returning the transformed file.
|