|
Deprecated Methods |
com.google.appengine.api.search.Index.add(Document...)
as of 1.7.3. Use Index.put(Document...) instead |
com.google.appengine.api.search.Index.add(Document.Builder...)
as of 1.7.3. Use Index.put(Document.Builder...) instead |
com.google.appengine.api.search.Index.add(Iterable)
as of 1.7.3. Use #put(Iterable) instead |
com.google.appengine.api.search.Index.addAsync(Document...)
as of 1.7.3. Use Index.putAsync(Document...) instead |
com.google.appengine.api.search.Index.addAsync(Document.Builder...)
as of 1.7.3. Use Index.putAsync(Document.Builder...) instead |
com.google.appengine.api.search.Index.addAsync(Iterable)
as of 1.7.3. Use #putAsync(Iterable) instead |
com.google.appengine.api.datastore.Query.addFilter(String, Query.FilterOperator, Object)
Use Query.setFilter(Filter) |
com.google.appengine.api.datastore.TransactionOptions.Builder.allowMultipleEntityGroups(boolean)
|
com.google.appengine.api.datastore.TransactionOptions.allowsMultipleEntityGroups()
|
com.google.appengine.api.datastore.TransactionOptions.clearMultipleEntityGroups()
|
com.google.appengine.api.datastore.PreparedQuery.countEntities()
Use PreparedQuery.countEntities(FetchOptions) instead. Calling
this function imposes a maximum result limit of 1000. |
com.google.appengine.api.datastore.FetchOptions.cursor(Cursor)
use FetchOptions.startCursor instead. |
com.google.appengine.api.search.Field.date(Date)
as of 1.7.2 this is no longer required for Date fields |
com.google.appengine.api.log.RequestLogs.getApiMcycles()
This value is no longer meaningful. |
com.google.appengine.api.quota.QuotaService.getApiTimeInMegaCycles()
This value is no longer meaningful. |
com.google.appengine.api.search.IndexSpec.getConsistency()
|
com.google.appengine.api.search.Index.getConsistency()
As of 1.7.3 Consistency is deprecated since only PER_DOCUMENT
mode is supported |
com.google.appengine.api.datastore.FetchOptions.getCursor()
use FetchOptions.getStartCursor() instead |
com.google.appengine.api.datastore.DatastoreServiceFactory.getDatastoreService(DatastoreConfig)
Use DatastoreServiceFactory.getDatastoreService(DatastoreServiceConfig)
instead. |
com.google.appengine.api.datastore.DatastoreServiceFactory.getDefaultDatastoreConfig()
Use DatastoreServiceConfig.Builder.withDefaults()
instead. |
com.google.appengine.api.search.Document.getField(String)
Use Document.getFields(String) to get all fields with a specific name. |
com.google.appengine.api.datastore.Query.getFilterPredicates()
Use Query.setFilter(Filter) and Query.getFilter() instead |
com.google.appengine.api.datastore.DatastoreConfig.getImplicitTransactionManagementPolicy()
Use DatastoreServiceConfig.getImplicitTransactionManagementPolicy() |
com.google.appengine.api.search.Util.getIntForDate(Date)
as of 1.7.2 |
com.google.appengine.api.memcache.ErrorHandlers.getLogAndContinue(Level)
Use ErrorHandlers.getConsistentLogAndContinue(Level) instead |
com.google.apphosting.api.ApiProxy.Environment.getRequestNamespace()
Use NamespaceManager.getGoogleAppsNamespace() |
com.google.appengine.api.images.ImagesService.getServingUrl(BlobKey)
Replaced by ImagesService.getServingUrl(ServingUrlOptions). |
com.google.appengine.api.images.ImagesService.getServingUrl(BlobKey, boolean)
Replaced by ImagesService.getServingUrl(ServingUrlOptions). |
com.google.appengine.api.images.ImagesService.getServingUrl(BlobKey, int, boolean)
Replaced by ImagesService.getServingUrl(ServingUrlOptions). |
com.google.appengine.api.images.ImagesService.getServingUrl(BlobKey, int, boolean, boolean)
Replaced by ImagesService.getServingUrl(ServingUrlOptions). |
com.google.appengine.api.blobstore.BlobstoreService.getUploadedBlobs(HttpServletRequest)
Use BlobstoreService.getUploads(HttpServletRequest) instead. Note that getUploadedBlobs
does not handle cases where blobs have been uploaded using the
multiple="true" attribute of the file input form element. |
com.google.appengine.api.search.Index.listDocuments(ListRequest)
as of 1.7.3. Use Index.getRange(GetRequest) instead. |
com.google.appengine.api.search.Index.listDocumentsAsync(ListRequest)
as of 1.7.3. Use Index.getRangeAsync(GetRequest) |
com.google.appengine.api.search.SearchService.listIndexes(ListIndexesRequest)
in 1.7.3. Use SearchService.getIndexes(GetIndexesRequest) instead |
com.google.appengine.api.search.SearchService.listIndexesAsync(ListIndexesRequest)
in 1.7.3. Use SearchService.getIndexesAsync(GetIndexesRequest) instead |
com.google.appengine.api.taskqueue.QueueConstants.maxTaskSizeBytes()
Use QueueConstants.maxPushTaskSizeBytes() |
com.google.appengine.api.datastore.TransactionOptions.multipleEntityGroups(boolean)
|
com.google.appengine.api.search.Index.remove(Iterable)
as of 1.7.3. Use #delete(Iterable) instead |
com.google.appengine.api.search.Index.remove(String...)
as of 1.7.3. Use Index.delete(String...) instead |
com.google.appengine.api.search.Index.removeAsync(Iterable)
as of 1.7.3. Use #deleteAsync(Iterable) instead |
com.google.appengine.api.search.Index.removeAsync(String...)
as of 1.7.3. Use Index.deleteAsync(String...) instead |
com.google.appengine.api.search.IndexSpec.Builder.setConsistency(Consistency)
As of 1.7.3, consistency setting is no longer required,
since PER_DOCUMENT is the only mode supported. |
com.google.appengine.api.memcache.MemcacheService.setNamespace(String)
use MemcacheServiceFactory.getMemcacheService(String)
instead. |
com.google.appengine.api.search.Field.truncate(Date, int)
as of 1.7.2 this is no longer required for Date fields |
com.google.appengine.api.datastore.FetchOptions.Builder.withCursor(Cursor)
use FetchOptions.Builder.withStartCursor(com.google.appengine.api.datastore.Cursor) instead. |