1 //$Id: Country.java,v 1.2 2005/06/27 17:02:08 epbernard Exp $2 package org.hibernate.test.annotations.entity;3 4 import java.io.Serializable ;5 6 /**7 * Serializable object to be serialized in DB as is8 * @author Emmanuel Bernard9 */10 public class Country implements Serializable {11 private String name;12 13 public String getName() {14 return name;15 }16 17 public void setName(String name) {18 this.name = name;19 }20 }21