Country.java 741 Bytes
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 Integer countryId;
    private String countryName;

    public Integer getCountryId() {
        return countryId;
    }

    public void setCountryId(Integer 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;
    }
}