All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.objectify.impl.Forge Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
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