//$Id$ package org.hibernate.ejb.test.emops; import javax.persistence.Entity; import javax.persistence.Id; /** * @author Emmanuel Bernard */ @Entity public class Mail { @Id private Long id; private String from; public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } }