| Package | Description |
|---|---|
| com.codename1.cloud |
Provides cloud related services such as storage, binding widgets to the cloud seamlessly so they can be persisted
easily.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CloudResponse.onError(CloudException err)
Deprecated.
Invoked if there was a server error
|
protected void |
CloudListModel.onError(CloudException err)
Deprecated.
Invoked when a cloud error occurs
|
| Modifier and Type | Method and Description |
|---|---|
CloudObject[] |
CloudStorage.fetch(String[] cloudIds)
Deprecated.
Fetches the objects from the server.
|
CloudObject[] |
CloudStorage.queryEquals(String type,
int index,
String value,
int page,
int limit,
int visibilityScope)
Deprecated.
Performs a query to the server finding the objects where the key
value is equal to the given value.
|
int |
CloudStorage.queryEqualsCount(String type,
int index,
String value,
int visibilityScope)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
String[] |
CloudStorage.queryEqualsKeys(String type,
int index,
String value,
int page,
int limit,
int visibilityScope)
Deprecated.
Equivalent to the standard query but just returns the keys matching the given query
|
CloudObject[] |
CloudStorage.queryGreaterThan(String type,
int index,
String value,
int page,
int limit,
int visibilityScope)
Deprecated.
Performs a query to the server finding the objects where the key
value is greater than the given value.
|
int |
CloudStorage.queryGreaterThanCount(String type,
int index,
String value,
int visibilityScope)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
CloudObject[] |
CloudStorage.queryLessThan(String type,
int index,
String value,
int page,
int limit,
int visibilityScope)
Deprecated.
Performs a query to the server finding the objects where the key
value is smaller than the given value.
|
int |
CloudStorage.queryLessThanCount(String type,
int index,
String value,
int visibilityScope)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
CloudObject[] |
CloudStorage.querySorted(String type,
int index,
boolean ascending,
int page,
int limit,
int visibilityScope)
Deprecated.
Performs a query to the server finding the objects where the sort is equal to the given value.
|
String[] |
CloudStorage.querySortedKeys(String type,
int index,
boolean ascending,
int page,
int limit,
int visibilityScope)
Deprecated.
Performs a query to the server finding the objects where the sort is equal to the given value and returning
the cloud key of these objects.
|
String |
CloudStorage.uploadCloudFile(String mimeType,
String file)
Deprecated.
this API is currently deprecated due to Googles cloud storage deprection
|
String |
CloudStorage.uploadCloudFile(String mimeType,
String filename,
InputStream data,
int dataSize)
Deprecated.
this API is currently deprecated due to Googles cloud storage deprection
|
Copyright © 2022. All rights reserved.