public final class BlobHTTPHeaders
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static BlobHTTPHeaders |
NONE
An object representing no blob properties.
|
Constructor and Description |
---|
BlobHTTPHeaders(java.lang.String cacheControl,
java.lang.String contentDisposition,
java.lang.String contentEncoding,
java.lang.String contentLanguage,
java.lang.String contentMD5,
java.lang.String contentType)
A
BlobHTTPHeaders object. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCacheControl() |
java.lang.String |
getContentDisposition() |
java.lang.String |
getContentEncoding() |
java.lang.String |
getContentLanguage() |
java.lang.String |
getContentMD5() |
java.lang.String |
getContentType() |
public static final BlobHTTPHeaders NONE
public BlobHTTPHeaders(java.lang.String cacheControl, java.lang.String contentDisposition, java.lang.String contentEncoding, java.lang.String contentLanguage, java.lang.String contentMD5, java.lang.String contentType)
BlobHTTPHeaders
object.cacheControl
- A String
representing the cache-control value stored for the blob.
If this field has not been set for the blob, this field returns null
.contentDisposition
- A String
representing the content-disposition value stored for the blob.
If this field has not been set for the blob, the field returns null
.contentEncoding
- A String
the content-encoding value stored for the blob.
If this field has not been set for the blob, the field returns null
.contentLanguage
- A String
representing the content-language value stored for the blob.
If this field has not been set for the blob, the field returns null
.contentMD5
- A String
representing the content MD5 value stored for the blob.
If this field has not been set for the blob, the field returns null
.contentType
- A String
representing the content type value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getCacheControl()
String
representing the cache-control value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getContentDisposition()
String
representing the content-disposition value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getContentEncoding()
String
the content-encoding value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getContentLanguage()
String
representing the content-language value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getContentMD5()
String
representing the content MD5 value stored for the blob.
If this field has not been set for the blob, the field returns null
.public java.lang.String getContentType()
String
representing the content type value stored for the blob.
If this field has not been set for the blob, the field returns null
.