public class BaseImmutableContentMetadata extends Object implements ContentMetadata, Serializable
| Modifier and Type | Field and Description |
|---|---|
protected String |
contentDisposition |
protected String |
contentEncoding |
protected String |
contentLanguage |
protected Long |
contentLength |
protected byte[] |
contentMD5 |
protected String |
contentType |
protected Date |
expires |
HTTP_HEADERS, RFC1123_DATE_PATTERN| Constructor and Description |
|---|
BaseImmutableContentMetadata(String contentType,
Long contentLength,
byte[] contentMD5,
String contentDisposition,
String contentLanguage,
String contentEncoding,
Date expires) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
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.
|
Date |
getExpires()
Gives the date/time after which the response is considered stale.
|
int |
hashCode() |
ContentMetadataBuilder |
toBuilder() |
String |
toString() |
protected String contentType
protected Long contentLength
protected byte[] contentMD5
protected String contentDisposition
protected String contentLanguage
protected String contentEncoding
protected Date expires
public Long getContentLength()
org.jclouds.http.GetOptions is called with options like
tail, range, or startAt.getContentLength in interface ContentMetadata#getInput()HttpHeaders.CONTENT_LENGTH,
GetOptionspublic byte[] getContentMD5()
getContentMD5 in interface ContentMetadatapublic String getContentType()
getContentType in interface ContentMetadatapublic String getContentDisposition()
getContentDisposition in interface ContentMetadatapublic String getContentLanguage()
getContentLanguage in interface ContentMetadatapublic String getContentEncoding()
getContentEncoding in interface ContentMetadatapublic Date getExpires()
getExpires in interface ContentMetadatapublic ContentMetadataBuilder toBuilder()
toBuilder in interface ContentMetadataCopyright © 2009-2013 jclouds. All Rights Reserved.