com.amazonaws.services.s3.model.PartSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk Show documentation
Show all versions of aws-java-sdk Show documentation
The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).
The newest version!
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.s3.model;
import java.util.Date;
/**
* Container for summary information about a part in a multipart upload, such as
* part number, size, etc.
*/
public class PartSummary {
/**
* The part number describing this part's position relative to the other
* parts in the multipart upload. Part number must be between 1 and 10,000
* (inclusive).
*/
private int partNumber;
/** The date at which this part was last modified. */
private Date lastModified;
/** The entity tag generated from the part content. */
private String eTag;
/** The size, in bytes, of the part. */
private long size;
/**
* Returns the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between 1 and
* 10,000 (inclusive).
*
* @return the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between
* 1 and 10,000 (inclusive).
*/
public int getPartNumber() {
return partNumber;
}
/**
* Sets the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between 1 and
* 10,000 (inclusive).
*
* @param partNumber
* the part number describing this part's position relative to
* the other parts in the multipart upload. Part number must be
* between 1 and 10,000 (inclusive).
*/
public void setPartNumber(int partNumber) {
this.partNumber = partNumber;
}
/**
* Returns the date this part was last modified.
*
* @return the date this part was last modified.
*/
public Date getLastModified() {
return lastModified;
}
/**
* Sets the date this part was last modified.
*
* @param lastModified
* the date this part was last modified.
*/
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
/**
* Returns the entity tag generated from the part content.
*
* @return the entity tag generated from the part content.
*/
public String getETag() {
return eTag;
}
/**
* Sets the entity tag generated from the part content.
*
* @param eTag
* the entity tag generated from the part content.
*/
public void setETag(String eTag) {
this.eTag = eTag;
}
/**
* Returns the size of this part, in bytes.
*
* @return the size of this part, in bytes.
*/
public long getSize() {
return size;
}
/**
* Sets the size of this part, in bytes.
*
* @param size
* the size of this part, in bytes.
*/
public void setSize(long size) {
this.size = size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy