
com.aliyun.oss.model.UploadPartResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss Show documentation
Show all versions of aliyun-sdk-oss Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License 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.aliyun.oss.model;
/**
* The result information of a part upload in a multipart upload.
*
*/
public class UploadPartResult extends GenericResult {
private int partNumber;
private long partSize;
private String eTag;
/**
* Constructor
*/
public UploadPartResult() {
}
/**
* Gets the part number.
*
* @return Part number.
*/
public int getPartNumber() {
return partNumber;
}
/**
* Sets the part number.
*
* @param partNumber
* Part number.
*/
public void setPartNumber(int partNumber) {
this.partNumber = partNumber;
}
/**
* Gets the ETag generated by OSS.
*
* OSS would send the MD5 value of the parts data received to user in the
* ETag header. To make sure the data transferred is 100% correct, we
* strongly encouraged user to check the server side MD5 with the local
* computed MD5 value.
*
*
* @return ETag value.
*/
public String getETag() {
return eTag;
}
/**
* Sets the ETag generated by OSS.
*
* OSS would send the MD5 value of the parts data received to user in the
* ETag header. To make sure the data transferred is 100% correct, we
* strongly encouraged user to check the server side MD5 with the local
* computed MD5 value.
*
*
* @param eTag
* ETag value.
*/
public void setETag(String eTag) {
this.eTag = eTag;
}
/**
* Gets the part's ETag.
*
* @return A {@link PartETag} instance that has the part number, part size
* and its ETag.
*/
public PartETag getPartETag() {
return new PartETag(partNumber, eTag, partSize, getClientCRC());
}
/**
* Gets the part size.
*
* @return Part size.
*/
public long getPartSize() {
return partSize;
}
/**
* Sets the part size.
*
* @param partSize
* Part size.
*/
public void setPartSize(long partSize) {
this.partSize = partSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy