Class UploadManager.UploadResponse
- java.lang.Object
- 
- com.oracle.bmc.objectstorage.transfer.UploadManager.UploadResponse
 
- 
- Enclosing class:
- UploadManager
 
 public static class UploadManager.UploadResponse extends Object The result referencing the uploaded object.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classUploadManager.UploadResponse.Builder
 - 
Constructor SummaryConstructors Constructor Description UploadResponse(String eTag, String contentMd5, String multipartMd5, String opcRequestId, String opcClientRequestId)UploadResponse(String eTag, String contentMd5, String multipartMd5, String opcRequestId, String opcClientRequestId, String contentCrc32c, String contentSha256, String contentSha384, String multipartSha256, String multipartSha384)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentCrc32c()The CRC32C of the single or multipart object uploaded.StringgetContentMd5()The MD5 of the object uploaded.StringgetContentSha256()The SHA256 of the object uploaded.StringgetContentSha384()The SHA384 of the object uploaded.StringgetETag()The etag of the object uploaded.StringgetMultipartMd5()The multipart MD5 of the object uploaded.StringgetMultipartSha256()The SHA256 of the multipart object uploaded.StringgetMultipartSha384()The SHA384 of the multipart object uploaded.StringgetOpcClientRequestId()The opc-client-request-id sent with every request, if provided.StringgetOpcRequestId()The opc-request-id associated with either the PutObject call or the final CommitMultipartUpload call (if multi-part upload was used).StringtoString()
 
- 
- 
- 
Constructor Detail- 
UploadResponse@ConstructorProperties({"eTag","contentMd5","multipartMd5","opcRequestId","opcClientRequestId"}) public UploadResponse(String eTag, String contentMd5, String multipartMd5, String opcRequestId, String opcClientRequestId) 
 - 
UploadResponse@ConstructorProperties({"eTag","contentMd5","multipartMd5","opcRequestId","opcClientRequestId","contentCrc32c","contentSha256","contentSha384","multipartSha256","multipartSha384"}) public UploadResponse(String eTag, String contentMd5, String multipartMd5, String opcRequestId, String opcClientRequestId, String contentCrc32c, String contentSha256, String contentSha384, String multipartSha256, String multipartSha384) 
 
- 
 - 
Method Detail- 
getETagpublic String getETag() The etag of the object uploaded.
 - 
getContentMd5public String getContentMd5() The MD5 of the object uploaded.Will be null if the object was uploaded using multi-part. See getMultipartMd5()instead.
 - 
getMultipartMd5public String getMultipartMd5() The multipart MD5 of the object uploaded.Will be null if the object was uploaded using standard put-object. See getContentMd5()instead.
 - 
getOpcRequestIdpublic String getOpcRequestId() The opc-request-id associated with either the PutObject call or the final CommitMultipartUpload call (if multi-part upload was used).
 - 
getOpcClientRequestIdpublic String getOpcClientRequestId() The opc-client-request-id sent with every request, if provided.
 - 
getContentCrc32cpublic String getContentCrc32c() The CRC32C of the single or multipart object uploaded.
 - 
getContentSha256public String getContentSha256() The SHA256 of the object uploaded.
 - 
getContentSha384public String getContentSha384() The SHA384 of the object uploaded.
 - 
getMultipartSha256public String getMultipartSha256() The SHA256 of the multipart object uploaded.
 - 
getMultipartSha384public String getMultipartSha384() The SHA384 of the multipart object uploaded.
 
- 
 
-