public class

MultipartUpload

extends Object
implements Serializable
java.lang.Object
   ↳ org.mule.module.s3.model.MultipartUpload

Class Overview

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.

Summary

Constants
long serialVersionUID
Fields
private Date initiated The date at which this upload was initiated.
private Owner initiator The initiator of this multipart upload.
private String key The key by which this upload is stored.
private Owner owner The owner of this multipart upload.
private String storageClass The storage class indicating how the data in this multipart upload will be stored.
private String uploadId The unique ID of this multipart upload.
Public Constructors
MultipartUpload()
Public Methods
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.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 4687051973165277981 (0x410bc0efc04f631d)

Fields

private Date initiated

The date at which this upload was initiated.

private Owner initiator

The initiator of this multipart upload.

private String key

The key by which this upload is stored.

private Owner owner

The owner of this multipart upload.

private String storageClass

The storage class indicating how the data in this multipart upload will be stored.

private String uploadId

The unique ID of this multipart upload.

Public Constructors

public MultipartUpload ()

Public Methods

public Date getInitiated ()

Returns the date at which this upload was initiated.

Returns
  • The date at which this upload was initiated.

public Owner getInitiator ()

Returns the user who initiated this multipart upload.

Returns
  • The user who initiated this multipart upload.

public String getKey ()

Returns the key by which this upload is stored.

Returns
  • The key by which this upload is stored.

public Owner getOwner ()

Returns the owner of this multipart upload.

Returns
  • The owner of this multipart upload.

public String getStorageClass ()

Returns the storage class indicating how the data in this multipart upload will be stored.

Returns
  • The storage class indicating how the data in this multipart upload will be stored.

public String getUploadId ()

Returns the unique ID of this multipart upload.

Returns
  • The unique ID of this multipart upload.

public void setInitiated (Date initiated)

Sets the date at which this upload was initiated.

Parameters
initiated The date at which this upload was initiated.

public void setInitiator (Owner initiator)

Sets the user who initiated this multipart upload.

Parameters
initiator The user who initiated this multipart upload.

public void setKey (String key)

Sets the key by which this upload is stored.

Parameters
key The key by which this upload is stored.

public void setOwner (Owner owner)

Sets the owner of this multipart upload.

Parameters
owner The owner of this multipart upload.

public void setStorageClass (String storageClass)

Sets the storage class indicating how the data in this multipart upload will be stored.

Parameters
storageClass The storage class indicating how the data in this multipart upload will be stored.

public void setUploadId (String uploadId)

Sets the unique ID of this multipart upload.

Parameters
uploadId The unique ID of this multipart upload.