Package | Description |
---|---|
org.jets3t.apps.cockpit.gui |
Provides the main GUI components (dialogs and panels) for Cockpit.
|
org.jets3t.apps.cockpitlite |
Provides CockpitLite, a graphical Java application for viewing and managing the contents
of an Amazon S3 account, where the S3 account is not owned by the application's user
directly but is made available via the Gatekeeper servlet.
|
org.jets3t.gui |
Graphical components used by GUI JetS3t applications Cockpit and Uploader.
|
org.jets3t.service |
Provides the main S3 Service interface, on which all JetS3t REST/HTTP or SOAP
implementations are based, and utilites applicable for all services.
|
org.jets3t.service.impl.rest.httpclient |
Provides a REST/HTTP S3 Service implementation based on the
Apache HttpClient library - this
implementation is the most reliable and efficient implementation provided with JetS3t.
|
org.jets3t.service.model |
Provides objects that model entities in S3 such as objects, buckets and owners.
|
org.jets3t.service.multi.s3 | |
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.
|
org.jets3t.service.utils.gatekeeper |
Provides the Gatekeeper messaging components, used to represent messages compatible with the
Gatekeeper message format.
|
org.jets3t.service.utils.signedurl |
Utility classes used when generated or applying signed URLs.
|
Modifier and Type | Method and Description |
---|---|
S3Object |
ObjectTableModel.getObject(int row) |
S3Object |
ObjectTableModel.getObjectByKey(String key) |
S3Object[] |
ObjectTableModel.getObjects() |
Modifier and Type | Method and Description |
---|---|
int |
ObjectTableModel.addObject(S3Object object) |
void |
ObjectTableModel.addObjects(S3Object[] objects) |
void |
ObjectTableModel.removeObject(S3Object object) |
Constructor and Description |
---|
SignedGetUrlDialog(Frame ownerFrame,
HyperlinkActivatedListener hyperlinkListener,
S3Service s3Service,
S3Object[] objects) |
Modifier and Type | Method and Description |
---|---|
S3Object |
CLObjectTableModel.getObject(int row) |
S3Object[] |
CLObjectTableModel.getObjects() |
Modifier and Type | Method and Description |
---|---|
int |
CLObjectTableModel.addObject(S3Object object) |
void |
CLObjectTableModel.addObjects(S3Object[] objects) |
String |
CLObjectTableModel.getObjectAclStatus(S3Object objectWithAcl) |
void |
CLObjectTableModel.removeObject(S3Object object) |
int |
CLObjectTableModel.updateObjectAclStatus(S3Object objectWithAcl,
String aclStatus) |
Modifier and Type | Method and Description |
---|---|
S3Object[] |
CopyObjectsDialog.getDestinationObjects() |
S3Object[] |
ObjectsAttributesDialog.getDestinationObjects() |
Modifier and Type | Method and Description |
---|---|
void |
ObjectsAttributesDialog.displayDialog(S3Object[] objects,
boolean modifyMode)
Display the dialog with data - always use this method instead of setVisible.
|
protected Set |
CopyObjectsDialog.renameObjectKeys(S3Object[] objects) |
static void |
ItemPropertiesDialog.showDialog(Frame owner,
S3Object[] objects,
Properties applicationProperties,
boolean includeMetadata)
Displays a dialog showing the detailed properties of an object, which will remain until the user
dismisses the dialog.
|
Constructor and Description |
---|
CopyObjectsDialog(Frame owner,
String title,
SkinsFactory skinsFactory,
S3Object[] objects,
S3Bucket[] buckets)
Construct a modal dialog for controlling copy opeations.
|
Modifier and Type | Method and Description |
---|---|
S3Object |
S3Service.getObject(S3Bucket bucket,
String objectKey)
Deprecated.
0.8.0
This method can be performed by anonymous services. Anonymous services can get a publicly-readable object. Important: It is the caller's responsibility to close the object's data input stream. The data stream should be consumed and closed as soon as is practical as network connections may be held open until the streams are closed. Excessive unclosed streams can lead to connection starvation. |
S3Object |
S3Service.getObject(S3Bucket bucket,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags,
Long byteRangeStart,
Long byteRangeEnd)
Returns an object representing the details and data of an item in S3 that meets any given preconditions.
|
S3Object |
S3Service.getObject(String bucketName,
String objectKey) |
S3Object |
S3Service.getObject(String bucketName,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags,
Long byteRangeStart,
Long byteRangeEnd) |
S3Object |
S3Service.getObjectDetails(S3Bucket bucket,
String objectKey)
Deprecated.
0.8.0
This method can be performed by anonymous services. Anonymous services can get a publicly-readable object's details. |
S3Object |
S3Service.getObjectDetails(S3Bucket bucket,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags)
Returns an object representing the details of an item in S3 that meets any given preconditions.
|
S3Object[] |
S3ObjectsChunk.getObjects()
Deprecated.
|
S3Object |
S3Service.getVersionedObject(String versionId,
S3Bucket bucket,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags,
Long byteRangeStart,
Long byteRangeEnd)
Returns an object representing the details and data of a versioned object in S3 that
also meets any given preconditions.
|
S3Object |
S3Service.getVersionedObject(String versionId,
String bucketName,
String objectKey)
Returns an object representing the details and data of an item in S3 with a specific
given version, without applying any preconditions.
|
S3Object |
S3Service.getVersionedObject(String versionId,
String bucketName,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags,
Long byteRangeStart,
Long byteRangeEnd)
Returns an object representing the details and data of a versioned object in S3 that
also meets any given preconditions.
|
S3Object |
S3Service.getVersionedObjectDetails(String versionId,
S3Bucket bucket,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags)
Returns an object representing the details of a versioned object in S3 that also
meets any given preconditions.
|
S3Object |
S3Service.getVersionedObjectDetails(String versionId,
String bucketName,
String objectKey)
Returns an object representing the details of an item in S3 with a specific given version,
without the object's data and without applying any preconditions.
|
S3Object |
S3Service.getVersionedObjectDetails(String versionId,
String bucketName,
String objectKey,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags)
Returns an object representing the details of a versioned object in S3 that also meets
any given preconditions.
|
S3Object[] |
S3Service.listObjects(S3Bucket bucket)
Deprecated.
0.8.0
The objects returned by this method contain only minimal information
such as the object's size, ETag, and LastModified timestamp. To retrieve
the objects' metadata you must perform follow-up This method can be performed by anonymous services. Anonymous services can only list the objects in a publicly-readable bucket. |
S3Object[] |
S3Service.listObjects(S3Bucket bucket,
String prefix,
String delimiter)
Deprecated.
0.8.0
The objects returned by this method contain only minimal information
such as the object's size, ETag, and LastModified timestamp. To retrieve
the objects' metadata you must perform follow-up This method can be performed by anonymous services. Anonymous services can only list the objects in a publicly-readable bucket.
NOTE: If you supply a delimiter value that could cause CommonPrefixes
("subdirectory paths") to be included in the results from S3, use the
|
S3Object[] |
S3Service.listObjects(S3Bucket bucket,
String prefix,
String delimiter,
long maxListingLength)
Deprecated.
0.8.0
The objects returned by this method contain only minimal information
such as the object's size, ETag, and LastModified timestamp. To retrieve
the objects' metadata you must perform follow-up This method can be performed by anonymous services. Anonymous services can list the contents of a publicly-readable bucket.
NOTE: If you supply a delimiter value that could cause CommonPrefixes
("subdirectory paths") to be included in the results from S3, use the
|
S3Object[] |
S3Service.listObjects(String bucketName) |
S3Object[] |
S3Service.listObjects(String bucketName,
String prefix,
String delimiter) |
S3Object[] |
S3Service.listObjects(String bucketName,
String prefix,
String delimiter,
long maxListingLength) |
S3Object |
S3Service.putObject(S3Bucket bucket,
S3Object object)
Puts an object inside an existing bucket in S3, creating a new object or overwriting
an existing one with the same key.
|
S3Object |
S3Service.putObject(String bucketName,
S3Object object)
Puts an object inside an existing bucket in S3, creating a new object or overwriting
an existing one with the same key.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Object> |
S3Service.copyVersionedObject(String versionId,
String sourceBucketName,
String sourceObjectKey,
String destinationBucketName,
S3Object destinationObject,
boolean replaceMetadata)
Copy an object with a specific version within your S3 account.
|
Map<String,Object> |
S3Service.copyVersionedObject(String versionId,
String sourceBucketName,
String sourceObjectKey,
String destinationBucketName,
S3Object destinationObject,
boolean replaceMetadata,
Calendar ifModifiedSince,
Calendar ifUnmodifiedSince,
String[] ifMatchTags,
String[] ifNoneMatchTags)
Copy an object with a specific version within your S3 account.
|
Invalidation |
CloudFrontService.invalidateObjects(String distributionId,
S3Object[] objects,
String callerReference)
Remove distribution objects from a CloudFront edge server cache to force
a refresh of the object data from the S3 origin.
|
MultipartUpload |
S3Service.multipartStartUpload(String bucketName,
S3Object object)
Start a multipart upload process for a given object; must be done before
individual parts can be uploaded.
|
MultipartPart |
S3Service.multipartUploadPart(MultipartUpload upload,
Integer partNumber,
S3Object object)
Upload an individual part that will comprise a piece of a multipart upload object.
|
protected abstract MultipartPart |
S3Service.multipartUploadPartImpl(String uploadId,
String bucketName,
Integer partNumber,
S3Object object) |
S3Object |
S3Service.putObject(S3Bucket bucket,
S3Object object)
Puts an object inside an existing bucket in S3, creating a new object or overwriting
an existing one with the same key.
|
S3Object |
S3Service.putObject(String bucketName,
S3Object object)
Puts an object inside an existing bucket in S3, creating a new object or overwriting
an existing one with the same key.
|
void |
S3Service.putObjectAcl(S3Bucket bucket,
S3Object object)
Applies access control settings to an object.
|
void |
S3Service.putObjectAcl(String bucketName,
S3Object object)
Applies access control settings to an object.
|
void |
S3Service.putVersionedObjectAcl(String versionId,
S3Bucket bucket,
S3Object object)
Applies access control settings to a versioned object.
|
Constructor and Description |
---|
S3ObjectsChunk(String prefix,
String delimiter,
S3Object[] objects,
String[] commonPrefixes,
String priorLastKey)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
S3Object |
RestStorageService.getObjectDetailsWithSignedUrl(String signedHeadUrl)
Gets an object's details using a pre-signed HEAD URL generated for that object.
|
S3Object |
RestStorageService.getObjectWithSignedUrl(String signedGetUrl)
Gets an object using a pre-signed GET URL generated for that object.
|
S3Object |
RestStorageService.putObjectWithSignedUrl(String signedPutUrl,
S3Object object)
Puts an object using a pre-signed PUT URL generated for that object.
|
Modifier and Type | Method and Description |
---|---|
protected MultipartPart |
RestS3Service.multipartUploadPartImpl(String uploadId,
String bucketName,
Integer partNumber,
S3Object object) |
S3Object |
RestStorageService.putObjectWithSignedUrl(String signedPutUrl,
S3Object object)
Puts an object using a pre-signed PUT URL generated for that object.
|
Modifier and Type | Method and Description |
---|---|
static S3Object[] |
S3Object.cast(StorageObject[] objects) |
Modifier and Type | Method and Description |
---|---|
List<S3Object> |
MultipartUploadAndParts.getPartObjects() |
Modifier and Type | Method and Description |
---|---|
void |
MultipartUploadAndParts.addPartObject(S3Object partObject) |
Constructor and Description |
---|
MultipartUploadAndParts(MultipartUpload multipartUpload,
List<S3Object> partObjects) |
MultipartUploadAndParts(MultipartUpload multipartUpload,
List<S3Object> partObjects,
Integer partNumberOffset) |
Modifier and Type | Method and Description |
---|---|
S3Object[] |
UpdateACLEvent.getCancelledObjects() |
S3Object[] |
DownloadObjectsEvent.getCancelledObjects() |
S3Object[] |
CreateObjectsEvent.getCancelledObjects() |
S3Object[] |
GetObjectHeadsEvent.getCancelledObjects() |
S3Object[] |
DeleteObjectsEvent.getCancelledObjects() |
S3Object[] |
LookupACLEvent.getCancelledObjects() |
S3Object[] |
GetObjectsEvent.getCancelledObjects() |
S3Object[] |
CopyObjectsEvent.getCancelledObjects() |
S3Object[] |
GetObjectHeadsEvent.getCompletedObjects() |
S3Object[] |
GetObjectsEvent.getCompletedObjects() |
S3Object[] |
CopyObjectsEvent.getCopiedObjects() |
S3Object[] |
CreateObjectsEvent.getCreatedObjects() |
S3Object[] |
DeleteObjectsEvent.getDeletedObjects() |
S3Object[] |
DownloadObjectsEvent.getDownloadedObjects() |
S3Object |
DownloadPackage.getObject()
Deprecated.
|
S3Object[] |
S3ServiceSimpleMulti.getObjectACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves Access Control List (ACL) settings for multiple objects.
|
S3Object[] |
S3ServiceSimpleMulti.getObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves multiple objects (including details and data).
|
S3Object[] |
S3ServiceSimpleMulti.getObjects(S3Bucket bucket,
String[] objectKeys)
Deprecated.
Retrieves multiple objects (including details and data).
|
S3Object[] |
S3ServiceSimpleMulti.getObjectsHeads(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves details of multiple objects (details only, no data)
|
S3Object[] |
S3ServiceSimpleMulti.getObjectsHeads(S3Bucket bucket,
String[] objectKeys)
Deprecated.
Retrieves details of multiple objects (details only, no data)
|
S3Object[] |
LookupACLEvent.getObjectsWithACL() |
S3Object[] |
UpdateACLEvent.getObjectsWithUpdatedACL() |
S3Object[] |
S3ServiceSimpleMulti.putACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Updates/sets Access Control List (ACL) settings for multiple objects.
|
S3Object[] |
S3ServiceSimpleMulti.putObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Creates/uploads multiple objects.
|
Modifier and Type | Method and Description |
---|---|
Map[] |
S3ServiceSimpleMulti.copyObjects(String sourceBucketName,
String destinationBucketName,
String[] sourceObjectKeys,
S3Object[] destinationObjects,
boolean replaceMetadata)
Deprecated.
Copies multiple objects within or between buckets.
|
boolean |
S3ServiceMulti.copyObjects(String sourceBucketName,
String destinationBucketName,
String[] sourceObjectKeys,
S3Object[] destinationObjects,
boolean replaceMetadata)
Deprecated.
Copies multiple objects within or between buckets, while sending
CopyObjectsEvent notification events. |
void |
S3ServiceSimpleMulti.deleteObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Deletes multiple objects
|
boolean |
S3ServiceMulti.deleteObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Deletes multiple objects from a bucket, and sends
DeleteObjectsEvent notification events. |
S3Object[] |
S3ServiceSimpleMulti.getObjectACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves Access Control List (ACL) settings for multiple objects.
|
boolean |
S3ServiceMulti.getObjectACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves Access Control List (ACL) information for multiple objects from a bucket, and sends
LookupACLEvent notification events. |
S3Object[] |
S3ServiceSimpleMulti.getObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves multiple objects (including details and data).
|
boolean |
S3ServiceMulti.getObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves multiple objects (details and data) from a bucket, and sends
GetObjectsEvent notification events. |
S3Object[] |
S3ServiceSimpleMulti.getObjectsHeads(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves details of multiple objects (details only, no data)
|
boolean |
S3ServiceMulti.getObjectsHeads(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Retrieves details (but no data) about multiple objects from a bucket, and sends
GetObjectHeadsEvent notification events. |
static UpdateACLEvent |
UpdateACLEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static DownloadObjectsEvent |
DownloadObjectsEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static CreateObjectsEvent |
CreateObjectsEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static GetObjectHeadsEvent |
GetObjectHeadsEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static DeleteObjectsEvent |
DeleteObjectsEvent.newCancelledEvent(S3Object[] remainingObjects,
Object uniqueOperationId) |
static LookupACLEvent |
LookupACLEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static GetObjectsEvent |
GetObjectsEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static CopyObjectsEvent |
CopyObjectsEvent.newCancelledEvent(S3Object[] incompletedObjects,
Object uniqueOperationId) |
static CopyObjectsEvent |
CopyObjectsEvent.newCompletedEvent(Object uniqueOperationId,
String[] sourceObjectKeys,
S3Object[] destinationObjects) |
static UpdateACLEvent |
UpdateACLEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
static DownloadObjectsEvent |
DownloadObjectsEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
static CreateObjectsEvent |
CreateObjectsEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
static GetObjectHeadsEvent |
GetObjectHeadsEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
static DeleteObjectsEvent |
DeleteObjectsEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] deletedObjects,
Object uniqueOperationId) |
static LookupACLEvent |
LookupACLEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
static GetObjectsEvent |
GetObjectsEvent.newInProgressEvent(ThreadWatcher threadWatcher,
S3Object[] completedObjects,
Object uniqueOperationId) |
S3Object[] |
S3ServiceSimpleMulti.putACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Updates/sets Access Control List (ACL) settings for multiple objects.
|
boolean |
S3ServiceMulti.putACLs(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Updates/sets Access Control List (ACL) information for multiple objects in a bucket, and sends
UpdateACLEvent notification events. |
S3Object[] |
S3ServiceSimpleMulti.putObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Creates/uploads multiple objects.
|
boolean |
S3ServiceMulti.putObjects(S3Bucket bucket,
S3Object[] objects)
Deprecated.
Creates multiple objects in a bucket, and sends
CreateObjectsEvent notification events. |
Constructor and Description |
---|
DownloadPackage(S3Object object,
File outputFile)
Deprecated.
|
DownloadPackage(S3Object object,
File outputFile,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
DownloadPackage(S3Object object,
OutputStream outputStream)
Deprecated.
|
DownloadPackage(S3Object object,
OutputStream outputStream,
boolean isUnzipping,
EncryptionUtil encryptionUtil)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static S3Object |
ServiceUtils.buildObjectFromUrl(String host,
String urlPath,
String s3Endpoint)
Builds an object based on the bucket name and object key information
available in the components of a URL.
|
static S3Object |
ObjectUtils.createObjectForUpload(String objectKey,
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(String objectKey,
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(String objectKey,
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.
|
Modifier and Type | Method and Description |
---|---|
List<S3Object> |
MultipartUtils.splitFileIntoObjectsByMaxPartSize(String objectKey,
File file)
Split the given file into objects such that no object has a size greater than
the defined maximum part size.
|
Modifier and Type | Method and Description |
---|---|
static long |
ServiceUtils.countBytesInObjects(S3Object[] objects)
Counts the total number of bytes in a set of S3Objects by summing the
content length of each.
|
static DownloadPackage |
ObjectUtils.createPackageForDownload(S3Object object,
File fileTarget,
boolean automaticUnzip,
boolean automaticDecrypt,
String encryptionPassword)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
S3Object |
SignatureRequest.buildObject() |
Modifier and Type | Method and Description |
---|---|
S3Object[] |
GatekeeperClientUtils.buildS3ObjectsFromSignatureRequests(SignatureRequest[] srs)
Parse the data in a set of SignatureRequest objects and build the corresponding
S3Objects represented by that data.
|
S3Object |
SignedUrlAndObject.getObject() |
S3Object |
SignedUrlHandler.getObjectDetailsWithSignedUrl(String signedHeadUrl)
Gets an object's details using a pre-signed HEAD URL generated for that object.
|
S3Object |
SignedUrlHandler.getObjectWithSignedUrl(String signedGetUrl)
Gets an object using a pre-signed GET URL generated for that object.
|
S3Object |
SignedUrlHandler.putObjectWithSignedUrl(String signedPutUrl,
S3Object object)
Puts an object using a pre-signed PUT URL generated for that object.
|
Modifier and Type | Method and Description |
---|---|
S3Object |
SignedUrlHandler.putObjectWithSignedUrl(String signedPutUrl,
S3Object object)
Puts an object using a pre-signed PUT URL generated for that object.
|
GatekeeperMessage |
GatekeeperClientUtils.requestActionThroughGatekeeper(String operationType,
String bucketName,
S3Object[] objects,
Map applicationPropertiesMap)
Request permission from the Gatekeeper for a particular operation.
|
Constructor and Description |
---|
SignedUrlAndObject(String signedUrl,
S3Object object) |
Copyright © 2006–2018. All rights reserved.