package org.legrog.entities; import javax.persistence.*; /** * Country persistence entity * Id and name seem enough */ @Entity public class Country { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int countryId; private String countryName; public int getCountryId() { return countryId; } public void setCountryId(int countryId) { this.countryId = countryId; } public String getCountryName() { return countryName; } public void setCountryName(String countryName) { this.countryName = countryName; } @Override public String toString() { return "ID_PAYS=" + countryId + " LIB_PAYS=" + countryName; } }