Class BlobInfo
- java.lang.Object
-
- com.google.appengine.api.blobstore.BlobInfo
-
- All Implemented Interfaces:
Serializable
public class BlobInfo extends Object implements Serializable
BlobInfo
contains metadata about a blob. This metadata is gathered by parsing the HTTP headers included in the blob upload.- See Also:
- RFC 1867 for the specification of HTTP file uploads., Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BlobInfo(BlobKey blobKey, String contentType, Date creation, String filename, long size)
BlobInfo(BlobKey blobKey, String contentType, Date creation, String filename, long size, String md5Hash)
BlobInfo(BlobKey blobKey, String contentType, Date creation, String filename, long size, String md5Hash, @Nullable String gsObjectName)
Creates aBlobInfo
by providing theBlobKey
and all associated metadata.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(@Nullable Object obj)
BlobKey
getBlobKey()
Returns theBlobKey
of the Blob thisBlobInfo
describes.String
getContentType()
Returns the MIME Content-Type provided in the HTTP header during upload of this Blob.Date
getCreation()
Returns the time and date the blob was upload.String
getFilename()
Returns the file included in the Content-Disposition HTTP header during upload of this Blob.@Nullable String
getGsObjectName()
Returns the object name of this Blob, if it is stored in Google Cloud Storage, in the form/[bucket-name]/[object-name]
.String
getMd5Hash()
Returns the md5Hash of this Blob.long
getSize()
Returns the size in bytes of this Blob.int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
BlobInfo
public BlobInfo(BlobKey blobKey, String contentType, Date creation, String filename, long size, String md5Hash, @Nullable String gsObjectName)
Creates aBlobInfo
by providing theBlobKey
and all associated metadata. This is typically done by the API on the developer's behalf.- Parameters:
blobKey
- theBlobKey
of the Blob.contentType
- the MIME Content-Type provided in the HTTP header during upload of this Blob.creation
- the time and date the blob was uploaded.filename
- the file included in the Content-Disposition HTTP header during upload of this Blob.size
- the size in bytes of this Blob.md5Hash
- the md5Hash of this Blob.gsObjectName
- the object name of this Blob, if it is stored on Google Cloud Storage, null otherwise.
-
BlobInfo
public BlobInfo(BlobKey blobKey, String contentType, Date creation, String filename, long size, String md5Hash)
-
-
Method Detail
-
getContentType
public String getContentType()
Returns the MIME Content-Type provided in the HTTP header during upload of this Blob.
-
getCreation
public Date getCreation()
Returns the time and date the blob was upload.
-
getFilename
public String getFilename()
Returns the file included in the Content-Disposition HTTP header during upload of this Blob.
-
getSize
public long getSize()
Returns the size in bytes of this Blob.
-
getMd5Hash
public String getMd5Hash()
Returns the md5Hash of this Blob.
-
getGsObjectName
public @Nullable String getGsObjectName()
Returns the object name of this Blob, if it is stored in Google Cloud Storage, in the form/[bucket-name]/[object-name]
. Returnsnull
if the Blob is stored in Blobstorage.
-
-