public class ObjectMetadata
extends java.lang.Object
构造器和说明 |
---|
ObjectMetadata() |
ObjectMetadata(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers) |
限定符和类型 | 方法和说明 |
---|---|
void |
addUserMetadata(java.lang.String key,
java.lang.String value)
Adds the key value pair of custom user-metadata for the associated object.
|
ObjectMetadata |
clone()
Creates and returns a copy of this object.
|
java.lang.String |
getCacheControl()
Gets the optional Cache-Control HTTP header which allows the user to specify caching behavior
along the HTTP request/reply chain.
|
java.lang.String |
getContentDisposition()
Gets the optional Content-Disposition HTTP header, which specifies presentation information
for the object such as the recommended filename for the object to be saved as.
|
java.lang.String |
getContentEncoding()
Gets the optional Content-Encoding HTTP header specifying what content encodings have been
applied to the object and what decoding mechanisms must be applied in order to obtain the
media-type referenced by the Content-Type field.
|
java.lang.String |
getContentLanguage()
Gets the Content-Language HTTP header, which describes the natural language(s) of the
intended audience for the enclosed entity.
|
long |
getContentLength()
Gets the Content-Length HTTP header indicating the size of the associated object in bytes.
|
java.lang.String |
getContentMD5()
Gets the base64 encoded 128-bit MD5 digest of the associated object (content - not including
headers) according to RFC 1864.
|
java.lang.String |
getContentType()
Gets the Content-Type HTTP header, which indicates the type of content stored in the
associated object.
|
java.lang.String |
getCrc64Ecma() |
java.lang.String |
getETag()
Gets the hex encoded 128-bit MD5 digest of the associated object according to RFC 1864.
|
java.util.Date |
getExpirationTime()
Returns the time this object will expire and be completely removed from COS.
|
java.util.Date |
getHttpExpiresDate()
Returns the date when the object is no longer cacheable.
|
long |
getInstanceLength()
Returns the physical length of the entire object stored in COS.
|
java.util.Date |
getLastModified()
Gets the value of the Last-Modified header, indicating the date and time at which Qcloud COS
last recorded a modification to the associated object.
|
java.lang.Boolean |
getOngoingRestore()
Returns the boolean value which indicates whether there is ongoing restore request.
|
java.util.Map<java.lang.String,java.lang.Object> |
getRawMetadata()
For internal use only.
|
java.lang.Object |
getRawMetadataValue(java.lang.String key)
For internal use only.
|
java.util.Date |
getRestoreExpirationTime()
Returns the time at which an object that has been temporarily restored from CAS will expire,
and will need to be restored again in order to be accessed.
|
java.lang.String |
getServerSideEncryption()
Returns the server-side encryption algorithm for the object, or null if none was used.
|
java.lang.String |
getSSEAlgorithm() |
java.lang.String |
getSSECOSKmsKeyId()
Returns the Key Management System key id used for Server Side Encryption of the COS
object.
|
java.lang.String |
getSSECustomerAlgorithm() |
java.lang.String |
getSSECustomerKeyMd5() |
java.lang.String |
getStorageClass() |
java.util.Map<java.lang.String,java.lang.String> |
getUserMetadata()
Gets the custom user-metadata for the associated object.
|
java.lang.String |
getUserMetaDataOf(java.lang.String key)
Returns the value of the specified user meta datum.
|
java.lang.String |
getVersionId()
Gets the version ID of the associated Qcloud COS object if available.
|
boolean |
isDeleteMarker() |
void |
setCacheControl(java.lang.String cacheControl)
Sets the optional Cache-Control HTTP header which allows the user to specify caching behavior
along the HTTP request/reply chain.
|
void |
setContentDisposition(java.lang.String disposition)
Sets the optional Content-Disposition HTTP header, which specifies presentational information
such as the recommended filename for the object to be saved as.
|
void |
setContentEncoding(java.lang.String encoding)
Sets the optional Content-Encoding HTTP header specifying what content encodings have been
applied to the object and what decoding mechanisms must be applied in order to obtain the
media-type referenced by the Content-Type field.
|
void |
setContentLanguage(java.lang.String contentLanguage)
Sets the Content-Language HTTP header which describes the natural language(s) of the intended
audience for the enclosed entity.
|
void |
setContentLength(long contentLength)
Sets the Content-Length HTTP header indicating the size of the associated object in bytes.
|
void |
setContentMD5(java.lang.String md5Base64)
Sets the base64 encoded 128-bit MD5 digest of the associated object (content - not including
headers) according to RFC 1864.
|
void |
setContentType(java.lang.String contentType)
Sets the Content-Type HTTP header indicating the type of content stored in the associated
object.
|
void |
setDeleteMarker(boolean isDeleteMarker) |
void |
setExpirationTime(java.util.Date expirationTime)
For internal use only.
|
void |
setHeader(java.lang.String key,
java.lang.Object value)
For internal use only.
|
void |
setHttpExpiresDate(java.util.Date httpExpiresDate)
Set the date when the object is no longer cacheable.
|
void |
setLastModified(java.util.Date lastModified)
For internal use only.
|
void |
setOngoingRestore(boolean ongoingRestore)
For internal use only.
|
void |
setRestoreExpirationTime(java.util.Date restoreExpirationTime)
only used to set the value in the object after receiving the value in a response from COS.
|
void |
setSecurityToken(java.lang.String securityToken)
Sets the security token for the object.
|
void |
setServerSideEncryption(java.lang.String serverSideEncryption)
Sets the server-side encryption algorithm for the object.
|
void |
setSSEAlgorithm(java.lang.String algorithm) |
void |
setSSECustomerAlgorithm(java.lang.String algorithm) |
void |
setSSECustomerKeyMd5(java.lang.String md5Digest) |
void |
setUserMetadata(java.util.Map<java.lang.String,java.lang.String> userMetadata)
Sets the custom user-metadata for the associated object.
|
public ObjectMetadata()
public ObjectMetadata(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers)
public java.util.Map<java.lang.String,java.lang.String> getUserMetadata()
Gets the custom user-metadata for the associated object.
Qcloud COS can store additional metadata on objects by internally representing it as HTTP headers prefixed with "x-cos-meta-". Use user-metadata to store arbitrary metadata alongside their data in Qcloud COS. When setting user metadata, callers should not include the internal "x-cos-meta-" prefix; this library will handle that for them. Likewise, when callers retrieve custom user-metadata, they will not see the "x-cos-meta-" header prefix.
User-metadata keys are case insensitive and will be returned as lowercase strings, even if they were originally specified with uppercase strings.
Note that user-metadata for an object is limited by the HTTP request header limit. All HTTP headers included in a request (including user metadata headers and other standard HTTP headers) must be less than 8KB.
setUserMetadata(Map)
,
addUserMetadata(String, String)
public void setUserMetadata(java.util.Map<java.lang.String,java.lang.String> userMetadata)
Sets the custom user-metadata for the associated object.
Qcloud COS can store additional metadata on objects by internally representing it as HTTP headers prefixed with "x-cos-meta-". Use user-metadata to store arbitrary metadata alongside their data in Qcloud COS. When setting user metadata, callers should not include the internal "x-cos-meta-" prefix; this library will handle that for them. Likewise, when callers retrieve custom user-metadata, they will not see the "x-cos-meta-" header prefix.
User-metadata keys are case insensitive and will be returned as lowercase strings, even if they were originally specified with uppercase strings.
Note that user-metadata for an object is limited by the HTTP request header limit. All HTTP headers included in a request (including user metadata headers and other standard HTTP headers) must be less than 8KB.
userMetadata
- The custom user-metadata for the associated object. Note that the key
should not include the internal COS HTTP header prefix.getUserMetadata()
,
addUserMetadata(String, String)
public void setHeader(java.lang.String key, java.lang.Object value)
key
- The name of the header being set.value
- The value for the header.public void addUserMetadata(java.lang.String key, java.lang.String value)
Adds the key value pair of custom user-metadata for the associated object. If the entry in the custom user-metadata map already contains the specified key, it will be replaced with these new contents.
Qcloud COS can store additional metadata on objects by internally representing it as HTTP headers prefixed with "x-cos-meta-". Use user-metadata to store arbitrary metadata alongside their data in Qcloud COS. When setting user metadata, callers should not include the internal "x-cos-meta-" prefix; this library will handle that for them. Likewise, when callers retrieve custom user-metadata, they will not see the "x-cos-meta-" header prefix.
Note that user-metadata for an object is limited by the HTTP request header limit. All HTTP headers included in a request (including user metadata headers and other standard HTTP headers) must be less than 8KB.
key
- The key for the custom user metadata entry. Note that the key should not include
the internal COS HTTP header prefix.value
- The value for the custom user-metadata entry.setUserMetadata(Map)
,
getUserMetadata()
public java.util.Map<java.lang.String,java.lang.Object> getRawMetadata()
public java.lang.Object getRawMetadataValue(java.lang.String key)
public java.util.Date getLastModified()
null
if the Last-Modified header hasn't been set.public void setLastModified(java.util.Date lastModified)
lastModified
- The date and time at which Qcloud COS last recorded a modification to the
associated object.public long getContentLength()
Gets the Content-Length HTTP header indicating the size of the associated object in bytes.
This field is required when uploading objects to COS, but the COS Java client will automatically set it when working directly with files. When uploading directly from a stream, set this field if possible. Otherwise the client must buffer the entire stream in order to calculate the content length before sending the data to Qcloud COS.
For more information on the Content-Length HTTP header, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.13
null
if it hasn't been set yet.setContentLength(long)
public long getInstanceLength()
public void setContentLength(long contentLength)
Sets the Content-Length HTTP header indicating the size of the associated object in bytes.
This field is required when uploading objects to COS, but the COS Java client will automatically set it when working directly with files. When uploading directly from a stream, set this field if possible. Otherwise the client must buffer the entire stream in order to calculate the content length before sending the data to Qcloud COS.
For more information on the Content-Length HTTP header, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.13
contentLength
- The Content-Length HTTP header indicating the size of the associated
object in bytes.getContentLength()
public java.lang.String getContentType()
Gets the Content-Type HTTP header, which indicates the type of content stored in the associated object. The value of this header is a standard MIME type.
When uploading files, the COS Java client will attempt to determine the correct content type if one hasn't been set yet. Users are responsible for ensuring a suitable content type is set when uploading streams. If no content type is provided and cannot be determined by the filename, the default content type, "application/octet-stream", will be used.
For more information on the Content-Type header, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.17
null
if it hasn't been set.setContentType(String)
public void setContentType(java.lang.String contentType)
Sets the Content-Type HTTP header indicating the type of content stored in the associated object. The value of this header is a standard MIME type.
When uploading files, the COS Java client will attempt to determine the correct content type if one hasn't been set yet. Users are responsible for ensuring a suitable content type is set when uploading streams. If no content type is provided and cannot be determined by the filename, the default content type "application/octet-stream" will be used.
For more information on the Content-Type header, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.17
contentType
- The HTTP Content-Type header indicating the type of content stored in the
associated COS object.getContentType()
public java.lang.String getContentLanguage()
Gets the Content-Language HTTP header, which describes the natural language(s) of the intended audience for the enclosed entity.
public void setContentLanguage(java.lang.String contentLanguage)
Sets the Content-Language HTTP header which describes the natural language(s) of the intended audience for the enclosed entity.
public java.lang.String getContentEncoding()
Gets the optional Content-Encoding HTTP header specifying what content encodings have been applied to the object and what decoding mechanisms must be applied in order to obtain the media-type referenced by the Content-Type field.
For more information on how the Content-Encoding HTTP header works, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.11
null
if it hasn't been set.setContentType(String)
public void setContentEncoding(java.lang.String encoding)
Sets the optional Content-Encoding HTTP header specifying what content encodings have been applied to the object and what decoding mechanisms must be applied in order to obtain the media-type referenced by the Content-Type field.
For more information on how the Content-Encoding HTTP header works, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.11
encoding
- The HTTP Content-Encoding header, as defined in RFC 2616.getContentType()
public java.lang.String getCacheControl()
Gets the optional Cache-Control HTTP header which allows the user to specify caching behavior along the HTTP request/reply chain.
For more information on how the Cache-Control HTTP header affects HTTP requests and responses, see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.9
null
if it
hasn't been set.setCacheControl(String)
public void setCacheControl(java.lang.String cacheControl)
Sets the optional Cache-Control HTTP header which allows the user to specify caching behavior along the HTTP request/reply chain.
For more information on how the Cache-Control HTTP header affects HTTP requests and responses see http://www.w3.org/ Protocols/rfc2616/rfc2616-sec14.html#sec14.9
cacheControl
- The HTTP Cache-Control header as defined in RFC 2616.getCacheControl()
public void setContentMD5(java.lang.String md5Base64)
Sets the base64 encoded 128-bit MD5 digest of the associated object (content - not including headers) according to RFC 1864. This data is used as a message integrity check to verify that the data received by Qcloud COS is the same data that the caller sent. If set to null,then the MD5 digest is removed from the metadata.
This field represents the base64 encoded 128-bit MD5 digest digest of an object's content as calculated on the caller's side. The ETag metadata field represents the hex encoded 128-bit MD5 digest as computed by Qcloud COS.
The COS Java client will attempt to calculate this field automatically when uploading files to Qcloud COS.
md5Base64
- The base64 encoded MD5 hash of the content for the object associated with
this metadata.getContentMD5()
public java.lang.String getContentMD5()
Gets the base64 encoded 128-bit MD5 digest of the associated object (content - not including headers) according to RFC 1864. This data is used as a message integrity check to verify that the data received by Qcloud COS is the same data that the caller sent.
This field represents the base64 encoded 128-bit MD5 digest digest of an object's content as calculated on the caller's side. The ETag metadata field represents the hex encoded 128-bit MD5 digest as computed by Qcloud COS.
The COS Java client will attempt to calculate this field automatically when uploading files to Qcloud COS.
null
if the MD5 hash of the content hasn't been set.setContentMD5(String)
public void setContentDisposition(java.lang.String disposition)
Sets the optional Content-Disposition HTTP header, which specifies presentational information such as the recommended filename for the object to be saved as.
For more information on how the Content-Disposition header affects HTTP client behavior, see http://www.w3.org /Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1
disposition
- The value for the Content-Disposition header.getContentDisposition()
public java.lang.String getContentDisposition()
Gets the optional Content-Disposition HTTP header, which specifies presentation information for the object such as the recommended filename for the object to be saved as.
For more information on how the Content-Disposition header affects HTTP client behavior, see http://www.w3.org /Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1
null
if the
Content-Disposition header hasn't been set.setCacheControl(String)
public java.lang.String getETag()
This field represents the hex encoded 128-bit MD5 digest of an object's content as calculated by Qcloud COS. The ContentMD5 field represents the base64 encoded 128-bit MD5 digest as calculated on the caller's side.
null
if it hasn't been set yet.public java.lang.String getVersionId()
public java.lang.String getServerSideEncryption()
public void setServerSideEncryption(java.lang.String serverSideEncryption)
serverSideEncryption
- The server-side encryption algorithm for the object.public void setSecurityToken(java.lang.String securityToken)
securityToken
- The security token for the object.public java.util.Date getExpirationTime()
public void setExpirationTime(java.util.Date expirationTime)
expirationTime
- The expiration time for the object.public void setHttpExpiresDate(java.util.Date httpExpiresDate)
public java.util.Date getHttpExpiresDate()
public java.util.Date getRestoreExpirationTime()
public void setRestoreExpirationTime(java.util.Date restoreExpirationTime)
restoreExpirationTime
- The new restore expiration time for the object.public void setOngoingRestore(boolean ongoingRestore)
public java.lang.Boolean getOngoingRestore()
public boolean isDeleteMarker()
public void setDeleteMarker(boolean isDeleteMarker)
public java.lang.String getUserMetaDataOf(java.lang.String key)
public ObjectMetadata clone()
java.lang.Object
x
, the expression:
will be true, and that the expression:x.clone() != x
will bex.clone().getClass() == x.getClass()
true
, but these are not absolute requirements.
While it is typically the case that:
will bex.clone().equals(x)
true
, this is not an absolute requirement.
By convention, the returned object should be obtained by calling
super.clone
. If a class and all of its superclasses (except
Object
) obey this convention, it will be the case that
x.clone().getClass() == x.getClass()
.
By convention, the object returned by this method should be independent
of this object (which is being cloned). To achieve this independence,
it may be necessary to modify one or more fields of the object returned
by super.clone
before returning it. Typically, this means
copying any mutable objects that comprise the internal "deep structure"
of the object being cloned and replacing the references to these
objects with references to the copies. If a class contains only
primitive fields or references to immutable objects, then it is usually
the case that no fields in the object returned by super.clone
need to be modified.
The method clone
for class Object
performs a
specific cloning operation. First, if the class of this object does
not implement the interface Cloneable
, then a
CloneNotSupportedException
is thrown. Note that all arrays
are considered to implement the interface Cloneable
and that
the return type of the clone
method of an array type T[]
is T[]
where T is any reference or primitive type.
Otherwise, this method creates a new instance of the class of this
object and initializes all its fields with exactly the contents of
the corresponding fields of this object, as if by assignment; the
contents of the fields are not themselves cloned. Thus, this method
performs a "shallow copy" of this object, not a "deep copy" operation.
The class Object
does not itself implement the interface
Cloneable
, so calling the clone
method on an object
whose class is Object
will result in throwing an
exception at run time.
clone
在类中 java.lang.Object
Cloneable
public java.lang.String getSSEAlgorithm()
public void setSSEAlgorithm(java.lang.String algorithm)
public java.lang.String getSSECustomerAlgorithm()
public void setSSECustomerAlgorithm(java.lang.String algorithm)
public java.lang.String getSSECustomerKeyMd5()
public void setSSECustomerKeyMd5(java.lang.String md5Digest)
public java.lang.String getStorageClass()
public java.lang.String getSSECOSKmsKeyId()
public java.lang.String getCrc64Ecma()