net.officefloor.tutorial.objectifyhttpserver.ObjectifyEntities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ObjectifyHttpServer Show documentation
Show all versions of ObjectifyHttpServer Show documentation
Tutorial of implementing Google storage with Objectify
package net.officefloor.tutorial.objectifyhttpserver;
import com.googlecode.objectify.Objectify;
import com.googlecode.objectify.annotation.Entity;
import net.officefloor.nosql.objectify.ObjectifyEntityLocator;
/**
* {@link Objectify} {@link Entity} instances.
*
* @author Daniel Sagenschneider
*/
// START SNIPPET: tutorial
public class ObjectifyEntities implements ObjectifyEntityLocator {
@Override
public Class>[] locateEntities() throws Exception {
return new Class[] { Post.class };
}
}
// END SNIPPET: tutorial