public class BaseMutableContentMetadata extends ContentMetadataBuilder implements MutableContentMetadata, Serializable
contentDisposition, contentEncoding, contentLanguage, contentLength, contentMD5, contentTypeHTTP_HEADERS| Constructor and Description |
|---|
BaseMutableContentMetadata() |
| Modifier and Type | Method and Description |
|---|---|
static BaseMutableContentMetadata |
fromContentMetadata(ContentMetadata in) |
String |
getContentDisposition()
Specifies presentational information for the object.
|
String |
getContentEncoding()
Specifies what content encodings have been applied to the object and thus what decoding
mechanisms must be applied in order to obtain the media-type referenced by the Content-Type
header field.
|
String |
getContentLanguage()
Get Content Language of the payload
Not all providers may support it
|
Long |
getContentLength()
Returns the total size of the payload, or the chunk that's available.
|
byte[] |
getContentMD5() |
String |
getContentType()
A standard MIME type describing the format of the contents.
|
void |
setContentDisposition(String contentDisposition)
Set Content Disposition of the payload
Not all providers may support it
|
void |
setContentEncoding(String contentEncoding)
Set Content Encoding of the payload
Not all providers may support it
|
void |
setContentLanguage(String contentLanguage)
Set Content Language of the payload
Not all providers may support it
|
void |
setContentLength(Long contentLength) |
void |
setContentMD5(byte[] md5) |
void |
setContentType(String contentType) |
void |
setPropertiesFromHttpHeaders(com.google.common.collect.Multimap<String,String> headers)
sets properties related to the http headers listed in
ContentMetadata.HTTP_HEADERS |
BaseMutableContentMetadata |
toBuilder() |
build, contentDisposition, contentEncoding, contentLanguage, contentLength, contentMD5, contentType, create, equals, fromHttpHeaders, hashCode, toStringpublic void setPropertiesFromHttpHeaders(com.google.common.collect.Multimap<String,String> headers)
MutableContentMetadataContentMetadata.HTTP_HEADERSsetPropertiesFromHttpHeaders in interface MutableContentMetadatapublic Long getContentLength()
org.jclouds.http.GetOptions is called with options like
tail, range, or startAt.getContentLength in interface ContentMetadata#getInput()HttpHeaders.CONTENT_LENGTH,
GetOptionspublic void setContentLength(@Nullable Long contentLength)
setContentLength in interface MutableContentMetadatapublic byte[] getContentMD5()
getContentMD5 in interface ContentMetadatapublic void setContentMD5(byte[] md5)
setContentMD5 in interface MutableContentMetadatapublic String getContentType()
getContentType in interface ContentMetadatapublic void setContentType(@Nullable String contentType)
setContentType in interface MutableContentMetadatapublic void setContentDisposition(@Nullable String contentDisposition)
setContentDisposition in interface MutableContentMetadatapublic String getContentDisposition()
getContentDisposition in interface ContentMetadatapublic void setContentLanguage(@Nullable String contentLanguage)
setContentLanguage in interface MutableContentMetadatapublic String getContentLanguage()
getContentLanguage in interface ContentMetadatapublic void setContentEncoding(@Nullable String contentEncoding)
setContentEncoding in interface MutableContentMetadatapublic String getContentEncoding()
getContentEncoding in interface ContentMetadatapublic BaseMutableContentMetadata toBuilder()
toBuilder in interface ContentMetadatapublic static BaseMutableContentMetadata fromContentMetadata(ContentMetadata in)
Copyright © 2009-2012 jclouds. All Rights Reserved.