|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.services.s3.model.MultipartUpload
public class MultipartUpload
A multipart upload is an upload to Amazon S3 that is creating by uploading individual pieces of an object, then telling Amazon S3 to complete the multipart upload and concatenate all the individual pieces together into a single object.
AmazonS3.initiateMultipartUpload(InitiateMultipartUploadRequest)
,
AmazonS3.uploadPart(UploadPartRequest)
,
AmazonS3.completeMultipartUpload(CompleteMultipartUploadRequest)
,
AmazonS3.abortMultipartUpload(AbortMultipartUploadRequest)
Constructor Summary | |
---|---|
MultipartUpload()
|
Method Summary | |
---|---|
Date |
getInitiated()
Returns the date at which this upload was initiated. |
Owner |
getInitiator()
Returns the user who initiated this multipart upload. |
String |
getKey()
Returns the key by which this upload is stored. |
Owner |
getOwner()
Returns the owner of this multipart upload. |
String |
getStorageClass()
Returns the storage class indicating how the data in this multipart upload will be stored. |
String |
getUploadId()
Returns the unique ID of this multipart upload. |
void |
setInitiated(Date initiated)
Sets the date at which this upload was initiated. |
void |
setInitiator(Owner initiator)
Sets the user who initiated this multipart upload. |
void |
setKey(String key)
Sets the key by which this upload is stored. |
void |
setOwner(Owner owner)
Sets the owner of this multipart upload. |
void |
setStorageClass(String storageClass)
Sets the storage class indicating how the data in this multipart upload will be stored. |
void |
setUploadId(String uploadId)
Sets the unique ID of this multipart upload. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MultipartUpload()
Method Detail |
---|
public String getKey()
public void setKey(String key)
key
- The key by which this upload is stored.public String getUploadId()
public void setUploadId(String uploadId)
uploadId
- The unique ID of this multipart upload.public Owner getOwner()
public void setOwner(Owner owner)
owner
- The owner of this multipart upload.public Owner getInitiator()
public void setInitiator(Owner initiator)
owner
- The user who initiated this multipart upload.public String getStorageClass()
public void setStorageClass(String storageClass)
storageClass
- The storage class indicating how the data in this multipart
upload will be stored.public Date getInitiated()
public void setInitiated(Date initiated)
initiated
- The date at which this upload was initiated.
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |