Freigeben über


ShareFileUploadInfo Class

  • java.lang.Object
    • com.azure.storage.file.share.models.ShareFileUploadInfo

public final class ShareFileUploadInfo

This class contains the response information returned from the service when the file is uploaded.

Constructor Summary

Constructor Description
ShareFileUploadInfo(String eTag, OffsetDateTime lastModified, byte[] contentMd5, Boolean isServerEncrypted)

Constructs a ShareFileUploadInfo.

Method Summary

Modifier and Type Method and Description
byte[] getContentMd5()

Gets the MD5 of the file's content.

String getETag()

Gets the ETag of the file.

OffsetDateTime getLastModified()

Gets the time when the file was last modified.

Boolean isServerEncrypted()

Gets whether the file's content is encrypted on the server.

Methods inherited from java.lang.Object

Constructor Details

ShareFileUploadInfo

public ShareFileUploadInfo(String eTag, OffsetDateTime lastModified, byte[] contentMd5, Boolean isServerEncrypted)

Constructs a ShareFileUploadInfo.

Parameters:

eTag - ETag of the file.
lastModified - Datetime when the file was last modified.
contentMd5 - MD5 of the file's content.
isServerEncrypted - Flag indicating the encryption status of the file's content on the server.

Method Details

getContentMd5

public byte[] getContentMd5()

Gets the MD5 of the file's content.

Returns:

the MD5 of the file's content.

getETag

public String getETag()

Gets the ETag of the file.

Returns:

the ETag of the file.

getLastModified

public OffsetDateTime getLastModified()

Gets the time when the file was last modified.

Returns:

the time when the file was last modified.

isServerEncrypted

public Boolean isServerEncrypted()

Gets whether the file's content is encrypted on the server.

Returns:

whether the file's content is encrypted on the server.

Applies to