Interface | Description |
---|---|
Objectify |
This is the main "business end" of Objectify.
|
Result<T> |
This interface provides a return value for asynchronous Objectify calls,
nearly the same as
java.util.concurrent.Future . |
Work<R> |
For executing transactions, this is a unit of work.
|
Class | Description |
---|---|
Key<T> |
A typesafe wrapper for the datastore Key object.
|
KeyRange<T> | Deprecated
Use
List<Key<T>> instead. |
LoadResult<T> |
Enhances the basic Result> with some additional methods useful when loading data.
|
ObjectifyFactory |
Factory which allows us to construct implementations of the Objectify interface.
|
ObjectifyFilter |
Configure this filter to use Objectify in your application.
|
ObjectifyService |
Holder of the master ObjectifyFactory and provider of the current thread-local Objectify instance.
|
Ref<T> |
Ref> is a Key> which allows the entity value to be fetched directly.
|
VoidWork | Deprecated
There are overloads for etc that take a instead.
|
Enum | Description |
---|---|
TxnType |
Just like the EJB options.
|
Exception | Description |
---|---|
LoadException |
Thrown when something went wrong during the load translation process; for example, the data in the
datastore might be in a format incompatible with the intended pojo field.
|
NotFoundException |
Exception thrown when a fetch for something could not be found.
|
SaveException |
Thrown when something went wrong during the save translation process.
|
TranslateException |
Thrown when something went wrong during the entity translation process; for example, the data in the
datastore might be in a format incompatible with the intended pojo field.
|
Copyright © 2018. All rights reserved.