net.officefloor.tutorial.objectifyhttpserver.Post 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.annotation.Entity;
import com.googlecode.objectify.annotation.Id;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.RequiredArgsConstructor;
import net.officefloor.web.HttpObject;
/**
* Post.
*
* @author Daniel Sagenschneider
*/
// START SNIPPET: tutorial
@Entity
@HttpObject
@Data
@AllArgsConstructor
@RequiredArgsConstructor
public class Post {
@Id
private Long id;
private String message;
}
// END SNIPPET: tutorial