
public class LienAmitie {
	
	protected Personne pers;
	protected int degres;
	protected String statut;
	
	
	public LienAmitie(Personne pers, int degres, String statut) 
	{
		this.pers = pers;
		this.degres = degres;
		this.statut = statut;
	}


	public Personne getPers() {
		return pers;
	}


	public void setPers(Personne pers) {
		this.pers = pers;
	}


	public int getDegres() {
		return degres;
	}


	public void setDegres(int degres) {
		this.degres = degres;
	}


	public String getStatut() {
		return statut;
	}


	public void setStatut(String statut) {
		this.statut = statut;
	}
	
}
