//$Id$ package org.hibernate.test.annotations.interfaces; import java.util.Collection; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToMany; /** * @author Emmanuel Bernard */ @Entity public class UserImpl implements User { private Collection<Contact> contacts; private Integer id; @Id @GeneratedValue public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } @OneToMany(targetEntity = ContactImpl.class) public Collection<Contact> getContacts() { return contacts; } public void setContacts(Collection<Contact> contacts) { this.contacts = contacts; } }