com.amazonaws.services.s3.model.CopyPartResult 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 2011-2014 Amazon Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://aws.amazon.com/apache2.0
*
* 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;
import com.amazonaws.services.s3.internal.ServerSideEncryptionResult;
/**
* Result of the copy part operation.
*/
public class CopyPartResult implements ServerSideEncryptionResult {
/** The ETag value of the new part */
private String etag;
/** The last modified date for the new part */
private Date lastModifiedDate;
/**
* The version ID of the source object. This field will only be present
* if object versioning has been enabled for the bucket from which the object
* was copied.
*/
private String versionId;
/**
* The part number of the copied part
*/
private int partNumber;
/** The server side encryption algorithm of the new object */
private String serverSideEncryption;
/**
* Gets the part number of the newly copied part.
*/
public int getPartNumber() {
return partNumber;
}
/**
* Sets the part number of the newly copied part.
*
* @param partNumber
* the part number of the newly uploaded part.
*/
public void setPartNumber(int partNumber) {
this.partNumber = partNumber;
}
/**
* Gets the ETag value for the new part that was created in the
* associated {@link CopyPartRequest}.
*
* @return The ETag value for the new part.
*
* @see CopyPartResult#setETag(String)
*/
public String getETag() {
return etag;
}
/**
* Sets the ETag value for the new part that was created from the
* associated copy object request.
*
* @param etag
* The ETag value for the new part.
*
* @see CopyPartResult#getETag()
*/
public void setETag(String etag) {
this.etag = etag;
}
/**
* Returns an identifier which identifies the copy part by its part number
* and the entity tag computed from the part's data. This information is
* later needed to complete a multipart copy.
*
* @return An identifier which identifies the copy part by its part number
* and the entity tag computed from the part's data.
*/
public PartETag getPartETag() {
return new PartETag(partNumber, etag);
}
/**
* Gets the date the newly copied part was last modified.
*
* @return The date the newly copied part was last modified.
*
* @see CopyPartResult#setLastModifiedDate(Date)
*/
public Date getLastModifiedDate() {
return lastModifiedDate;
}
/**
* Sets the date the newly copied part was last modified.
*
* @param lastModifiedDate
* The date the new, copied part was last modified.
*
* @see CopyPartResult#getLastModifiedDate()
*/
public void setLastModifiedDate(Date lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
}
/**
* Gets the version ID of the source object. This field is only
* present if object versioning has been enabled for the bucket the
* object was copied from.
*
* @return The version ID of the newly copied object.
*
* @see CopyPartResult#setVersionId(String)
*/
public String getVersionId() {
return versionId;
}
/**
* Sets the version ID of the source object.
*
* @param versionId
* The version ID of the source object.
*
* @see CopyPartResult#getVersionId()
*/
public void setVersionId(String versionId) {
this.versionId = versionId;
}
/**
* Returns the server-side encryption algorithm for the newly created
* object, or null if none was used.
*/
public String getServerSideEncryption() {
return serverSideEncryption;
}
/**
* Sets the server-side encryption algorithm for the newly created object.
*
* @param serverSideEncryption
* The server-side encryption algorithm for the new object.
*/
public void setServerSideEncryption(String serverSideEncryption) {
this.serverSideEncryption = serverSideEncryption;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy