com.googlecode.objectify.impl.Forge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
package com.googlecode.objectify.impl;
/**
* Interface for something that constructs objects. This is used to abstract the injection/construction
* process so we don't have to pass ObjectifyFactory around everywhere.
*/
public interface Forge
{
/**
* Construct an instance of the specified type. Objectify uses this method whenever possible to create
* instances of entities, condition classes, or other types.
*/
T construct(Class type);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy