package org.hibernate.test.stateless; public class Org { private Integer id; private Country country; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Country getCountry() { return country; } public void setCountry(Country country) { this.country = country; } }