Uses of Class
com.google.appengine.api.blobstore.BlobKey
Packages that use BlobKey
Package
Description
Provides management and persistent storage of large, immutable byte arrays.
Provides facilities for the creation and manipulation of images.
-
Uses of BlobKey in com.google.appengine.api.blobstore
Methods in com.google.appengine.api.blobstore that return BlobKeyModifier and TypeMethodDescriptionBlobstoreService.createGsBlobKey
(String filename) Create aBlobKey
for a Google Storage File.BlobInfo.getBlobKey()
Returns theBlobKey
of the Blob thisBlobInfo
describes.Methods in com.google.appengine.api.blobstore that return types with arguments of type BlobKeyModifier and TypeMethodDescriptionBlobstoreService.getUploadedBlobs
(javax.servlet.http.HttpServletRequest request) Deprecated.BlobstoreService.getUploads
(javax.servlet.http.HttpServletRequest request) Returns theBlobKey
for any files that were uploaded, keyed by the upload form "name" field.Methods in com.google.appengine.api.blobstore with parameters of type BlobKeyModifier and TypeMethodDescriptionint
void
Permanently deletes the specified blobs.byte[]
Get fragment from specified blob.@Nullable BlobInfo
BlobInfoFactory.loadBlobInfo
(BlobKey blobKey) Loads theBlobInfo
metadata forblobKey
.BlobInfoFactory.queryBlobInfosAfter
(@Nullable BlobKey previousBlob) Queries forBlobInfo
instances, beginning at the blob followingpreviousBlob
in lexicographic order.void
BlobstoreService.serve
(BlobKey blobKey, @Nullable ByteRange byteRange, javax.servlet.http.HttpServletResponse response) Arrange for the specified blob to be served as the response content for the current request.void
BlobstoreService.serve
(BlobKey blobKey, String rangeHeader, javax.servlet.http.HttpServletResponse response) Arrange for the specified blob to be served as the response content for the current request.void
Arrange for the specified blob to be served as the response content for the current request.Constructors in com.google.appengine.api.blobstore with parameters of type BlobKeyModifierConstructorDescriptionBlobInfo
(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.BlobstoreInputStream
(BlobKey blobKey) Creates a BlobstoreInputStream that reads data from the blob indicated by blobKey, starting at the beginning of the blob.BlobstoreInputStream
(BlobKey blobKey, long offset) Creates a BlobstoreInputStream that reads data from the blob indicated by blobKey, starting at offset. -
Uses of BlobKey in com.google.appengine.api.blobstore.ee10
Methods in com.google.appengine.api.blobstore.ee10 that return BlobKeyModifier and TypeMethodDescriptionBlobstoreService.createGsBlobKey
(String filename) Create aBlobKey
for a Google Storage File.Methods in com.google.appengine.api.blobstore.ee10 that return types with arguments of type BlobKeyModifier and TypeMethodDescriptionBlobstoreService.getUploadedBlobs
(jakarta.servlet.http.HttpServletRequest request) Deprecated.BlobstoreService.getUploads
(jakarta.servlet.http.HttpServletRequest request) Returns theBlobKey
for any files that were uploaded, keyed by the upload form "name" field.Methods in com.google.appengine.api.blobstore.ee10 with parameters of type BlobKeyModifier and TypeMethodDescriptionvoid
Permanently deletes the specified blobs.byte[]
Get fragment from specified blob.void
BlobstoreService.serve
(BlobKey blobKey, @Nullable ByteRange byteRange, jakarta.servlet.http.HttpServletResponse response) Arrange for the specified blob to be served as the response content for the current request.void
Arrange for the specified blob to be served as the response content for the current request.void
BlobstoreService.serve
(BlobKey blobKey, String rangeHeader, jakarta.servlet.http.HttpServletResponse response) Arrange for the specified blob to be served as the response content for the current request. -
Uses of BlobKey in com.google.appengine.api.images
Methods in com.google.appengine.api.images that return BlobKeyModifier and TypeMethodDescription@Nullable BlobKey
Image.getBlobKey()
If this image is backed by a blob, return the associatedBlobKey
.Methods in com.google.appengine.api.images with parameters of type BlobKeyModifier and TypeMethodDescriptionvoid
ImagesService.deleteServingUrl
(BlobKey blobKey) Deletes a URL that was previously generated bygetServingUrl(BlobKey)
.ImagesService.getServingUrl
(BlobKey blobKey) Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions)
.ImagesService.getServingUrl
(BlobKey blobKey, boolean secureUrl) Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions)
.ImagesService.getServingUrl
(BlobKey blobKey, int imageSize, boolean crop) Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions)
.ImagesService.getServingUrl
(BlobKey blobKey, int imageSize, boolean crop, boolean secureUrl) Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions)
.IImagesServiceFactory.makeImageFromBlob
(BlobKey blobKey) Create an image backed by the specifiedblobKey
.static Image
ImagesServiceFactory.makeImageFromBlob
(BlobKey blobKey) Create an image backed by the specifiedblobKey
.static ServingUrlOptions
ServingUrlOptions.Builder.withBlobKey
(BlobKey blobKey) Returns defaultServingUrlOptions
and callsServingUrlOptions.blobKey(BlobKey)
.
BlobstoreService.getUploads(javax.servlet.http.HttpServletRequest)
instead.