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

com.darwinsys.model.MiniRecipe Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.model;

import java.util.Date;

import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;


/** 
 * A subset of a Cookbook Recipe object, for demos that need it
 */
@Entity
public class MiniRecipe {
	@Id
	int id;
	String title;
	@ManyToOne(fetch = FetchType.LAZY)
	//@NotNull
	@JoinColumn(name = "owner")
	MiniPerson owner;
	Date creationDate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy