Country.java 849 Bytes
package org.legrog.entities;

import javax.persistence.*;

/*
    Entité persistante repésentant un pays.
    Simplement composée d'un identitiant et d'un libellé.
 */
@Entity
public class Country /*  extends org.roliste.data.DbEntity */ {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name="COUNTRY_ID")
    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;
    }
}