//$Id$ package org.hibernate.test.annotations.notfound; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import org.hibernate.annotations.NotFound; import org.hibernate.annotations.NotFoundAction; /** * @author Emmanuel Bernard */ @Entity public class Coin { private Integer id; private String name; private Currency currency; @Id @GeneratedValue public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } @ManyToOne @JoinColumn(name = "currency", referencedColumnName = "name") @NotFound(action = NotFoundAction.IGNORE) public Currency getCurrency() { return currency; } public void setCurrency(Currency currency) { this.currency = currency; } }