Class UploadMultipartPartResult
- java.lang.Object
-
- com.amazonaws.services.glacier.model.UploadMultipartPartResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UploadMultipartPartResult extends Object implements Serializable, Cloneable
Contains the Amazon Glacier response to your request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UploadMultipartPartResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UploadMultipartPartResult
clone()
boolean
equals(Object obj)
String
getChecksum()
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.int
hashCode()
void
setChecksum(String checksum)
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.String
toString()
Returns a string representation of this object; useful for testing and debugging.UploadMultipartPartResult
withChecksum(String checksum)
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
-
-
-
Method Detail
-
setChecksum
public void setChecksum(String checksum)
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
- Parameters:
checksum
- The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
-
getChecksum
public String getChecksum()
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
- Returns:
- The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
-
withChecksum
public UploadMultipartPartResult withChecksum(String checksum)
The SHA256 tree hash that Amazon Glacier computed for the uploaded part.
- Parameters:
checksum
- The SHA256 tree hash that Amazon Glacier computed for the uploaded part.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UploadMultipartPartResult clone()
-
-