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 |
HTTP_HEADERS
Constructor and Description |
---|
BaseImmutableContentMetadata(String contentType,
Long contentLength,
byte[] contentMD5,
String contentDisposition,
String contentLanguage,
String contentEncoding) |
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.
|
int |
hashCode() |
ContentMetadataBuilder |
toBuilder() |
String |
toString() |
protected String contentType
protected Long contentLength
protected byte[] contentMD5
protected String contentDisposition
protected String contentLanguage
protected String contentEncoding
public Long getContentLength()
org.jclouds.http.GetOptions
is called with options like
tail, range, or startAt.getContentLength
in interface ContentMetadata
#getInput()
HttpHeaders.CONTENT_LENGTH
,
GetOptions
public byte[] getContentMD5()
getContentMD5
in interface ContentMetadata
public String getContentType()
getContentType
in interface ContentMetadata
public String getContentDisposition()
getContentDisposition
in interface ContentMetadata
public String getContentLanguage()
getContentLanguage
in interface ContentMetadata
public String getContentEncoding()
getContentEncoding
in interface ContentMetadata
public ContentMetadataBuilder toBuilder()
toBuilder
in interface ContentMetadata
Copyright © 2009-2012 jclouds. All Rights Reserved.