Uses of Class
com.google.appengine.api.blobstore.BlobKey
-
Packages that use BlobKey Package Description com.google.appengine.api.blobstore Provides management and persistent storage of large, immutable byte arrays.com.google.appengine.api.images 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 BlobKey Modifier and Type Method Description BlobKeyBlobstoreService. createGsBlobKey(String filename)Create aBlobKeyfor a Google Storage File.BlobKeyBlobInfo. getBlobKey()Returns theBlobKeyof the Blob thisBlobInfodescribes.Methods in com.google.appengine.api.blobstore that return types with arguments of type BlobKey Modifier and Type Method Description Map<String,BlobKey>BlobstoreService. getUploadedBlobs(javax.servlet.http.HttpServletRequest request)Deprecated.Map<String,List<BlobKey>>BlobstoreService. getUploads(javax.servlet.http.HttpServletRequest request)Returns theBlobKeyfor any files that were uploaded, keyed by the upload form "name" field.Methods in com.google.appengine.api.blobstore with parameters of type BlobKey Modifier and Type Method Description intBlobKey. compareTo(BlobKey o)voidBlobstoreService. delete(BlobKey... blobKeys)Permanently deletes the specified blobs.byte[]BlobstoreService. fetchData(BlobKey blobKey, long startIndex, long endIndex)Get fragment from specified blob.@Nullable BlobInfoBlobInfoFactory. loadBlobInfo(BlobKey blobKey)Loads theBlobInfometadata forblobKey.Iterator<BlobInfo>BlobInfoFactory. queryBlobInfosAfter(@Nullable BlobKey previousBlob)Queries forBlobInfoinstances, beginning at the blob followingpreviousBlobin lexicographic order.voidBlobstoreService. 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.voidBlobstoreService. 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.voidBlobstoreService. serve(BlobKey blobKey, javax.servlet.http.HttpServletResponse response)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 BlobKey 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 aBlobInfoby providing theBlobKeyand 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.images
Methods in com.google.appengine.api.images that return BlobKey Modifier and Type Method Description @Nullable BlobKeyImage. getBlobKey()If this image is backed by a blob, return the associatedBlobKey.Methods in com.google.appengine.api.images with parameters of type BlobKey Modifier and Type Method Description ServingUrlOptionsServingUrlOptions. blobKey(BlobKey blobKey)voidImagesService. deleteServingUrl(BlobKey blobKey)Deletes a URL that was previously generated bygetServingUrl(BlobKey).StringImagesService. getServingUrl(BlobKey blobKey)Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions).StringImagesService. getServingUrl(BlobKey blobKey, boolean secureUrl)Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions).StringImagesService. getServingUrl(BlobKey blobKey, int imageSize, boolean crop)Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions).StringImagesService. getServingUrl(BlobKey blobKey, int imageSize, boolean crop, boolean secureUrl)Deprecated.Replaced byImagesService.getServingUrl(ServingUrlOptions).ImageIImagesServiceFactory. makeImageFromBlob(BlobKey blobKey)Create an image backed by the specifiedblobKey.static ImageImagesServiceFactory. makeImageFromBlob(BlobKey blobKey)Create an image backed by the specifiedblobKey.static ServingUrlOptionsServingUrlOptions.Builder. withBlobKey(BlobKey blobKey)Returns defaultServingUrlOptionsand callsServingUrlOptions.blobKey(BlobKey).
-